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

:root {
  --font: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --brown:  #382B26;
  --cream:  #F3F1E2;
  --white:  #ffffff;
}

html {
  scroll-behavior: auto; /* Locomotive gère le smooth */
}

/* Requis par Locomotive Scroll */
html.has-scroll-smooth {
  overflow: hidden;
}
.has-scroll-smooth body {
  overflow: hidden;
}
.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

body {
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
  color: var(--brown);
}

/* Typography */
h1 { font-family: 'DM Sans', sans-serif; font-size: clamp(2.4rem, 7vw, 7rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-family: 'Zen Dots', sans-serif; font-size: clamp(1.6rem, 4vw, 3.8rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { line-height: 1.7; font-size: 1rem; }

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.is-inview .reveal,
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Nav — fixed car Locomotive Scroll transforme le conteneur (sticky incompatible) */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  color: var(--brown);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
nav.is-scrolled {
  background: rgba(243, 241, 226, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-logo { grid-column: 1; justify-self: start; }
.nav-logo-img { height: 100px; width: auto; display: block; }
.nav-links { grid-column: 2; justify-self: center; display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--brown); opacity: 0.65; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta-wrap { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 12px; }

/* Dropdown nav */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: default;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  background: #faf9f2;
  border: none;
  border-radius: 12px;
  padding: 8px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  opacity: 1 !important;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(56,43,38,0.06); }
.nav-dropdown-menu a span {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.4;
  letter-spacing: 0.05em;
}
.nav-cta {
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--brown);
  color: var(--cream);
  opacity: 1;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { opacity: 0.8; }
.nav-cta-icon { display: block; }
.nav-links .nav-instagram { font-size: 1.3rem; opacity: 0.8; transition: opacity 0.2s; color: var(--brown); }
.nav-links .nav-instagram:hover { opacity: 1; }

/* Keywords hover section */
.keywords-section {
  background: var(--brown);
  position: relative;
  overflow: hidden;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kw-pretitle {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  margin-bottom: 20px;
}
.keywords-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease, background-image 0s;
  z-index: 0;
}
.keywords-section:hover .keywords-bg {
  opacity: 0.25;
}
.keywords-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  row-gap: 16px;
  column-gap: 20px;
  height: 100%;
  text-align: center;
}
.kw-word {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  cursor: default;
  transition: opacity 0.2s;
  line-height: 1;
}
.keywords-flow:hover .kw-word { opacity: 0.3; }
.keywords-flow:hover .kw-word:hover { opacity: 1; }
.kw-sep {
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: var(--cream);
  opacity: 0.2;
  line-height: 1;
  display: flex;
  align-self: center;
}

/* Bandeau défilant */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: transparent;
  color: var(--white);
  padding: 24px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 36s linear infinite;
  align-items: baseline;
}
.ticker-item {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0 48px;
  line-height: 1;
}
.ticker-sep {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  opacity: 0.35;
  padding: 0;
  align-self: center;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 120px 25% 48px;
  position: relative;
  gap: 48px;
}

/* Texte gauche */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  width: 100%;
  padding-top: 12vh;
}

.hero-pretitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 10px;
}

.hvt-pretitle {
  position: absolute;
  top: 20px;
  left: 28px;
  color: var(--cream);
  margin-bottom: 0;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title em { font-style: normal; display: block; }

.hero-subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  max-width: 70%;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0.75;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

/* 2 colonnes en bas */
.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: clamp(600px, 72vw, 1400px);
  flex: 1;
  min-height: 340px;
  max-height: 560px;
  margin-top: 6vh;
}

/* Colonne gauche — photo */
.hero-col-photo {
  border-radius: 20px;
  overflow: hidden;
  height: 52vh;
  position: relative;
}
.hero-fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-fade-img.is-active {
  opacity: 1;
}

/* Colonne droite — ticker vertical */
.hero-col-ticker {
  border-radius: 20px;
  background: var(--brown);
  overflow: hidden;
  position: relative;
  height: 52vh;
  align-self: end;
  padding: 28px;
}

.hvt-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 2px 16px;
  height: 100%;
  text-align: center;
}

.hvt-word {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  padding: 6px 4px;
}

.hvt-img {
  width: clamp(80px, 10vw, 130px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: outline-offset 0.2s;
  background: var(--white);
  color: var(--brown);
}
.btn-primary:hover { outline: 1.5px solid var(--white); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section Layout */
section { padding: 120px 48px; }
.section-label {
  font-family: 'Zen Dots', sans-serif;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-title { font-family: var(--font); font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.section-lead {
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* Services — intro */

.svc-intro { padding-bottom: 0; }

/* Ligne 1 : tagline gauche + grande phrase droite */
.svc-intro-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.svc-intro-tagline {
  font-size: 0.78rem;
  line-height: 2;
  opacity: 0.4;
  padding-top: 6px;
}
.svc-intro-statement {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 780px;
}

/* Ligne 2 : label + pills */
.svc-pills-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid;
  margin-bottom: 72px;
}
.svc-pills-label {
  font-family: 'Zen Dots', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  padding-top: 4px;
}
.svc-pills-right { display: flex; flex-direction: column; gap: 24px; }

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-pill {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid currentColor;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  color: inherit;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.svc-pill:hover { opacity: 0.75; }
.svc-pill.is-active { opacity: 1; }

.svc-pill-panels { min-height: 3.5em; }
.svc-pill-panel {
  display: none;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 640px;
  animation: fade-in 0.3s ease;
}
.svc-pill-panel.is-active { display: block; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .svc-intro-top    { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .svc-pills-block  { grid-template-columns: 1fr; gap: 24px; }
  .svc-intro-tagline { display: none; }
}
@media (max-width: 768px) {
  .svc-intro-statement { font-size: 1.3rem; }
}

/* Bloc "Nos prestations" + svc-nav intégré */
.svc-nav-header {
  padding: 140px 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-nav-header .section-title { margin-bottom: 0; }

/* Nav sommaire — bande brun charte */
.svc-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brown);
  color: var(--cream);
  margin-top: 32px;
}
.svc-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  border-right: 1px solid rgba(243,241,226,0.15);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.svc-nav-link:last-child { border-right: none; }
.svc-nav-link:hover { border-bottom-color: var(--cream); background: rgba(243,241,226,0.06); }
.svc-nav-link span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.5;
}

/* Sections services détaillées */
.svc-section {
  padding: 80px 0;
  width: 100%;
}
.svc-light {
  background: var(--cream);
  color: var(--brown);
}
.svc-dark {
  background: var(--brown);
  color: var(--cream);
}
.svc-dark .svc-wrap        { border-color: rgba(243,241,226,0.2); }
.svc-dark .svc-card ul     { border-color: rgba(243,241,226,0.2); }
.svc-dark .svc-gallery     { border-color: rgba(243,241,226,0.2); }
.svc-dark .svc-gallery-thumbs { border-color: rgba(243,241,226,0.15); }

/* Card centrée 80% — 2/3 contenu + 1/3 slider */
.svc-wrap {
  max-width: 72vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  border: 1px solid;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 580px;
}

.svc-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-num-label {
  font-family: var(--font);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 1;
  opacity: 0.07;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.svc-title {
  font-family: var(--font);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.svc-lead { font-size: 2rem; line-height: 1.2; margin-bottom: 36px; max-width: 560px; }
.svc-cta {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid;
  transition: opacity 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.svc-cta:hover { opacity: 0.75; }

.svc-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
  width: 100%;
}
.svc-card.reveal.is-inview:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 12px;
}

.svc-card {
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px 32px;
}
.svc-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
  grid-row: 1;
}
.svc-card p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  min-width: 180px;
}
.svc-light .svc-card p { color: #9d724e; }
.svc-dark  .svc-card p { color: #ffd1ac; }
.svc-dark  .svc-card h3 i { background: #59371a; }
.svc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 1px solid;
  border-top: none;
  padding-left: 24px;
  padding-top: 0;
  margin-top: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  justify-content: center;
  min-width: 180px;
}
.svc-card ul li {
  font-size: 0.78rem;
  font-weight: 500;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.svc-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
}

/* En-tête de section (hors card) */
.svc-section-header {
  max-width: 72vw;
  margin: 0 auto 0;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.svc-section-header-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-num-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.svc-num-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.svc-num-icons i {
  font-size: 1.8rem;
  opacity: 0.07;
}

/* Galerie photo — côté droit */
.svc-gallery {
  position: relative;
  overflow: hidden;
  border-left: 1px solid;
}

/* Image principale : remplit la galerie sauf la bande de vignettes */
.svc-gallery-main {
  position: absolute;
  inset: 0;
  bottom: 68px;
  overflow: hidden;
}
.svc-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.svc-gallery-img.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Vignettes : épinglées en bas */
.svc-gallery-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  display: flex;
  gap: 4px;
  padding: 8px;
  overflow-x: auto;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,.1);
  scrollbar-width: none;
  background: inherit;
}
.svc-gallery-thumbs::-webkit-scrollbar { display: none; }
.svc-gallery-thumb {
  width: 72px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  border-radius: 2px;
}
.svc-gallery-thumb.is-active,
.svc-gallery-thumb:hover { opacity: 1; }

@media (max-width: 1200px) {
  .svc-wrap { max-width: 90%; }
  .svc-section-header { max-width: 90%; }
}
@media (max-width: 1024px) {
  .svc-wrap {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 24px;
  }
  .svc-section-header { max-width: calc(100% - 48px); margin-left: 24px; }
  .svc-gallery {
    height: 360px;
    border-left: none;
    border-top: 1px solid;
  }
  .svc-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .svc-section { padding: 48px 0; }
  .svc-wrap { margin: 0 16px; }
  .svc-card { padding: 16px 14px; }
  .svc-section-header {
    max-width: calc(100% - 32px);
    margin-left: 16px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .svc-num-aside { flex-direction: column; align-items: flex-end; }
  .svc-num-icons i { font-size: 1rem; }
  .svc-num-icons { gap: 8px; }
  .svc-num-label { font-size: 3rem; }
  .svc-content { padding: 40px 28px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-nav { grid-template-columns: 1fr; }
  .svc-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .svc-card h3 { grid-column: 1; grid-row: 1; }
  .svc-card p  { grid-column: 1; grid-row: 2; font-size: 0.95rem; }
  .svc-card { cursor: pointer; }
  .svc-card ul {
    grid-column: 1;
    grid-row: 3;
    border-left: none;
    border-top: 1px solid;
    padding-left: 0;
    padding-top: 16px;
    margin-top: 8px;
    min-width: unset;
    max-height: 0;
    overflow: hidden;
    border-top: none;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
    padding-top: 0;
    margin-top: 0;
  }
  .svc-card.is-open ul {
    max-height: 400px;
    opacity: 1;
    border-top: 1px solid;
    padding-top: 16px;
    margin-top: 8px;
  }
  .svc-card h3::after {
    content: '+';
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.4;
    transition: transform 0.3s ease;
  }
  .svc-card.is-open h3::after {
    transform: rotate(45deg);
  }
  .svc-gallery { height: 360px; }
  .svc-title { font-size: 1.6rem; }
  .svc-lead { font-size: 1.1rem; }
}

/* Réalisations */

.gallery-outer {
  position: relative;
}

.gallery-arrow--next {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  margin-top: 64px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}
@media (max-width: 640px) {
  .gallery-item:hover img { transform: none; }
  .gallery-outer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 24px 0;
    margin-top: 0;
    width: 100%;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 75vw;
    height: 52vw;
    border-radius: 12px;
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .gallery-item--tall { grid-row: span 1; height: 52vw; }
  .gallery-arrow--next {
    display: flex;
    position: static;
    background: none;
    border: none;
    color: var(--brown);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 6px;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    margin-right: 24px;
  }
  .gallery-arrow--next.is-hidden {
    opacity: 0;
  }
}

/* Bande défilante travaux */
.travaux-strip {
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
}
.travaux-track {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: travaux-scroll 60s linear infinite;
}
.travaux-track img {
  height: 240px;
  width: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
@keyframes travaux-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .travaux-track { animation: none; overflow-x: auto; }
}

/* Stats */
.about-stats { display: flex; align-items: center; }
.about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; width: 100%; }
.about-stats .stat-item { padding: 32px 20px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item { padding: 40px 32px; text-align: center; }
.stat-num {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid;
}
.about-visual-inner { position: absolute; inset: 0; }
.about-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-badge strong { display: block; font-size: 1.8rem; line-height: 1; letter-spacing: -0.03em; margin-bottom: 2px; }

.about-list { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-list li .fa-check {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brown);
  font-size: 0.8rem;
}

/* Process */
#process { padding: 80px 48px; }

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

/* Colonne gauche — photos */
.process-visuals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-photo {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-photo--top { height: 260px; }
.process-photo--bottom { height: 260px; }

.process-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: var(--cream);
  padding: 20px 24px;
}
.process-quote p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.process-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.process-quote-author strong { font-size: 0.8rem; }
.process-quote-author span { font-size: 0.75rem; opacity: 0.6; }

/* Colonne droite — contenu */
.process-content .section-title {
  margin-top: 12px;
  margin-bottom: 48px;
}

.process-steps-v {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.process-step-v {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(56,43,38,0.1);
}
.process-step-v:last-child { border-bottom: none; padding-bottom: 0; }

.step-num-v {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.4;
  padding-top: 4px;
  flex-shrink: 0;
  width: 24px;
}
.process-step-v h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.process-step-v p { font-size: 0.88rem; line-height: 1.65; opacity: 0.7; }

/* Zones */
#zones { border-top: 1px solid; }

.zones-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

/* Carte SVG */
.zones-map {
  max-width: 400px;
  margin: 0 auto;
}
.france-regions-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.zones-map-legend {
  font-size: 0.72rem;
  opacity: 0.4;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

/* Grille de villes */
.zones-area-grid-header {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.5;
  padding-bottom: 20px;
}
.zones-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.zones-area {
  padding: 20px 24px;
  background: #f9f8f2;
  cursor: pointer;
}

.zones-area-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}
.zones-area-title::after {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.zones-area.is-open .zones-area-title::after { transform: rotate(45deg); }

.zones-area-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding-top 0.3s ease;
  padding-top: 0;
}
.zones-area.is-open .zones-area-list {
  max-height: 200px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 20px;
}
.zones-area-list li { font-size: 0.72rem; line-height: 1.4; opacity: 0.7; }
.zones-area-list li a { color: inherit; text-decoration: underline; text-decoration-color: rgba(56,43,38,0.3); text-underline-offset: 2px; transition: opacity 0.2s; }
.zones-area-list li a:hover { opacity: 1; text-decoration-color: var(--brown); }

/* City links block */
.zones-city-links { margin-top: 48px; }
.zones-city-links-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.45; margin-bottom: 16px; }
.zones-city-links-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.zones-city-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 500; color: var(--brown); text-decoration: none; border: 1px solid rgba(56,43,38,0.22); border-radius: 100px; padding: 7px 15px; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.zones-city-link i { font-size: 0.65rem; opacity: 0.6; }
.zones-city-link:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.zones-city-link:hover i { opacity: 1; }

@media (max-width: 1200px) { .zones-layout { grid-template-columns: 1fr 2fr; gap: 48px; } }
@media (max-width: 1024px) { .zones-layout { grid-template-columns: 1fr; } .zones-map { max-width: 260px; } }
@media (max-width: 640px) {
  .zones-layout { grid-template-columns: 1fr; gap: 32px; }
  .zones-map { max-width: 220px; margin: 0 auto; }
  .zones-area-grid { grid-template-columns: 1fr; }
  .zones-area-grid { gap: 0; }
  .zones-area,
  .zones-area:nth-child(odd) { padding: 0; background: none; border-bottom: 1px solid; }
  .zones-area:last-child { border-bottom: none; }
  .zones-area-title { font-size: 0.75rem; padding: 10px 0; opacity: 1; letter-spacing: 0.06em; }
  .zones-area-list li { font-size: 0.72rem; }
}

/* FAQ */
#faq { padding: 120px 80px; }
#faq .section-lead { max-width: 560px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 64px; }
.faq-item {
  border: 1px solid;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.25s;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question span { flex: 1; }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; transition: transform 0.3s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 28px 24px; font-size: 0.92rem; line-height: 1.75; margin: 0; }

@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; } #faq { padding: 80px 48px; } }
@media (max-width: 768px)  { #faq { padding: 80px 24px; } .faq-question { padding: 20px; font-size: 0.95rem; } .faq-answer { padding: 0 20px 20px; } }

/* Contact — split layout */
#contact.contact-split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--brown);
}
.contact-split-left {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
}
.contact-split-left .section-label { color: var(--cream); opacity: 0.4; }
.contact-split-left .section-title { color: var(--cream); margin-bottom: 18px; }
.contact-split-left > p { color: var(--cream); opacity: 0.58; line-height: 1.72; max-width: 400px; margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--brown);
}
.contact-item-icon {
  width: 38px; height: 38px;
  border-radius: 4px;
  border: 1px solid rgba(56,43,38,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--brown);
}
.contact-item-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; opacity: 0.42; color: var(--brown); }
.contact-item-value { font-size: 0.95rem; font-weight: 500; color: var(--brown); }

/* Overrides pour la section contact homepage (fond marron) */
.contact-split-left .contact-item { color: var(--cream); }
.contact-split-left .contact-item-icon { border-color: rgba(243,241,226,0.2); color: var(--cream); }
.contact-split-left .contact-item-label { color: var(--cream); }
.contact-split-left .contact-item-value { color: var(--cream); }
.contact-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); color: var(--brown); font-weight: 700; font-size: 0.9rem; text-decoration: none; padding: 14px 28px; border-radius: 100px; transition: opacity 0.2s; align-self: flex-start; }
.contact-cta-btn:hover { opacity: 0.88; }

.contact-split-right {
  overflow: hidden;
  align-self: stretch;
}
.contact-split-photo {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.contact-split-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.contact-split-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  max-width: 100%;
  pointer-events: none;
}

/* ── Formulaire de contact ─────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; opacity: 0.65; }
.form-group .req { color: var(--brown); opacity: 1; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--white);
  border: 1.5px solid rgba(56,43,38,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--brown); opacity: 0.3; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brown); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23382B26' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-status { display: none; padding: 12px 16px; border-radius: 8px; border: 1.5px solid; font-size: 0.88rem; margin-bottom: 16px; }
.form-submit {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.8; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 0.78rem; opacity: 0.45; margin-top: 12px; }

@media (max-width: 1200px) {
  .hero-columns { width: 90vw; }
}

@media (max-width: 900px) {
  #contact.contact-split { grid-template-columns: 1fr; min-height: auto; }
  .contact-split-right { display: none; }
  .contact-split-left { padding: 72px 32px; }
}
@media (max-width: 480px) {
  .contact-split-left { padding: 56px 24px; }
}



/* Footer */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(243,241,226,0.12);
}
.footer-logo-img { height: 60px; width: auto; display: block; }
.footer-copy { font-size: 0.8rem; opacity: 0.55; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { font-size: 0.8rem; color: var(--cream); opacity: 0.55; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-links .fa-instagram { font-size: 1.1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
/* ─── Hamburger button ───────────────────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile menu overlay ────────────────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 36px 48px;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-link {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  padding: 8px 0;
  opacity: 0.9;
}
.nav-mobile-sub {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--brown);
  opacity: 0.5;
  text-decoration: none;
  padding: 4px 0 4px 16px;
}
.nav-mobile-cta {
  margin-top: 32px;
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; transition: padding 0.3s ease, background 0.3s ease; }
  .nav-logo-img { transition: height 0.3s ease; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { padding: 7px 12px; }
  .nav-cta-icon { display: block; }
  .nav-cta-text { font-size: 0.65rem; font-weight: 400; }

  nav.is-scrolled {
    padding: 8px 24px;
    background: rgba(243, 241, 226, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  nav.is-scrolled .nav-logo-img { height: 36px; }

  .hero-columns {
    grid-template-columns: 1fr;
    width: 90vw;
    max-height: none;
  }
  .hero-col-photo { height: 50vw; }
  .keywords-section { min-height: 280px; }
  .nav-mobile { display: flex; }
  section { padding: 80px 24px; }
  #hero { padding: 80px 24px; }
  .hero-scroll-hint { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }
  .process-steps { grid-template-columns: 1fr; }
  #process { padding: 48px 24px; }
  .process-inner { grid-template-columns: 1fr; gap: 32px; }
  .process-visuals { flex-direction: row; height: 220px; }
  .process-photo--top,
  .process-photo--bottom { height: 100%; flex: 1; }
  .process-quote { padding: 14px 16px; }
  .process-quote p { font-size: 0.8rem; margin-bottom: 8px; }
  .process-content .section-title { margin-bottom: 28px; }
  .process-steps-v { gap: 0; }
  .process-step-v { padding-bottom: 20px; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .contact-form { padding: 28px 24px; }
}

/* ─── Lightbox ───────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
