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

/* ============================================================
   RESET & VARIABLES
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:      #0a0a0a;
  --white:      #ffffff;
  --off-white:  #f8f7f5;
  --light-gray: #f2f1ef;
  --mid-gray:   #9a9a9a;
  --dark-gray:  #2a2a2a;
  --accent:     #c9a96e;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
  --nav-h:      72px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--black); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION
============================================================ */
#ldp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,1);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 260px;
  display: block !important;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo-icon,
.nav-logo-name { display: none !important; }
.nav-menu { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-menu a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dark-gray); padding-bottom: 2px; border-bottom: 1.5px solid transparent; transition: all 0.2s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: var(--black); border-bottom-color: var(--black); }
.nav-menu .menu-contact > a,
.nav-menu .nav-cta > a {
  background: var(--black); color: var(--white) !important;
  padding: 10px 22px; border: none !important;
}
.nav-menu .menu-contact > a:hover,
.nav-menu .nav-cta > a:hover { background: #333; }
#ldp-nav .nav-menu {
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* ── MOBILE NAV ── */
#nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#nav-mobile-overlay.open { display: flex; }
#nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
#nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
}
@media(max-width: 768px) {
  #nav-mobile-toggle { display: flex; }
  .nav-menu { display: none; }
}

/* ============================================================
   SHARED UTILS
============================================================ */
.lbl {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mid-gray);
}
.lbl::before { content: ''; width: 36px; height: 1px; background: var(--mid-gray); display: block; }
.lbl-c {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mid-gray);
}
.lbl-c::before, .lbl-c::after { content: ''; display: block; width: 60px; height: 1px; background: var(--mid-gray); }
.lbl-w { color: #666; }
.lbl-w::before { background: #666; }

.btn-blk {
  display: inline-block; background: var(--black); color: var(--white);
  padding: 14px 32px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; border: none; transition: background .2s;
}
.btn-blk:hover { background: #2a2a2a; color: var(--white); }
.btn-ol {
  display: inline-block; background: transparent; color: var(--black);
  padding: 14px 32px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; border: 1.5px solid var(--black); transition: all .2s;
}
.btn-ol:hover { background: var(--black); color: var(--white); }
.btn-olw {
  display: inline-block; background: transparent; color: var(--white);
  padding: 15px 36px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; border: 1.5px solid var(--white); transition: all .2s;
}
.btn-olw:hover { background: var(--white); color: var(--black); }
.divider { width: 48px; height: 2px; background: var(--black); margin: 0 auto; }

/* PAGE HERO (pages internes) */
.page-hero {
  background: var(--black); color: var(--white);
  padding: calc(var(--nav-h) + 72px) 80px 72px;
}
.page-hero .lbl { color: #666; margin-bottom: 20px; }
.page-hero .lbl::before { background: #666; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(44px,5.5vw,76px); font-weight: 400; line-height: 1.08; max-width: 660px; margin-bottom: 20px; }
.page-hero p { font-size: 14px; line-height: 1.85; color: #aaa; max-width: 500px; }

/* ============================================================
   FRONT PAGE — HERO
============================================================ */
#hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--off-white);
}
.hero-left { padding: 80px 56px 80px 80px; display: flex; flex-direction: column; justify-content: center; }
.hero-card {
  background: var(--black); color: var(--white);
  padding: 48px 44px; position: relative; margin: 28px 0;
}
.hero-card::before {
  content: '◆'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: var(--black); background: var(--off-white); padding: 0 10px;
}
.hero-sublbl {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 9px 0; margin-bottom: 26px;
}
.hero-title { font-family: var(--serif); font-size: clamp(32px,3.4vw,50px); font-weight: 400; line-height: 1.14; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-bar { width: 32px; height: 2px; background: var(--accent); margin-top: 26px; }
.hero-desc { font-size: 13px; line-height: 1.8; color: #555; max-width: 430px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-img-frame { position: absolute; top: 40px; left: 0px; right: 40px; bottom: 40px; }
.hero-img-frame::before {
  content: ''; position: absolute; inset: -18px -18px 18px 18px;
  border: 1.5px solid rgba(0,0,0,0.65); z-index: 1; pointer-events: none;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; }
.hero-quote {
  position: absolute; bottom: 96px; left: 0; z-index: 3;
  background: var(--white); padding: 20px 26px; max-width: 320px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
}
.hero-quote p { font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.65; color: #333; }
.hero-quote-bar { width: 28px; height: 2px; background: var(--black); margin-top: 12px; }

/* ============================================================
   FRONT PAGE — BAND PROJET
============================================================ */
#fp-band {
  background: var(--black); color: var(--white);
  padding: 68px 80px; display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
#fp-band h2 { font-family: var(--serif); font-size: clamp(28px,3vw,44px); font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
#fp-band p { font-size: 13px; line-height: 1.8; color: #999; max-width: 460px; }

/* ============================================================
   FRONT PAGE — AGENCE INTRO
============================================================ */
#fp-agence { padding: 110px 80px; text-align: center; }
#fp-agence h2 { font-family: var(--serif); font-size: clamp(34px,3.8vw,54px); font-weight: 400; margin-bottom: 18px; }
#fp-agence .divider { margin: 0 auto 36px; }
#fp-agence p { font-size: 14.5px; line-height: 1.9; color: #555; max-width: 700px; margin: 0 auto 18px; }

/* ============================================================
   FRONT PAGE — APPROCHE
============================================================ */
#fp-approche { display: grid; grid-template-columns: 1fr 1fr; background: var(--light-gray); }
.approche-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
  max-height: 440px;
}
.approche-img img {
  width: 75%;
  height: 75%;
  object-fit: cover;
  display: block;
}
.approche-content { padding: 80px 68px; display: flex; flex-direction: column; justify-content: center; }
.approche-content .lbl { margin-bottom: 22px; }
.approche-content h2 { font-family: var(--serif); font-size: clamp(26px,2.8vw,42px); font-weight: 500; line-height: 1.18; margin-bottom: 26px; }
.approche-content h2 em { font-style: italic; font-weight: 300; }
.approche-content p { font-size: 13px; line-height: 1.88; color: #555; margin-bottom: 14px; }
.approche-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 36px; margin-top: 32px; border-top: 1px solid #d4d4d4; padding-top: 26px; }
.pillar-num { font-size: 10px; font-weight: 600; color: var(--mid-gray); margin-bottom: 4px; }
.pillar-name { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.pillar-desc { font-size: 12px; color: #666; line-height: 1.65; }

/* ============================================================
   FRONT PAGE — EXPERTISE HOME
============================================================ */
#fp-expertise { padding: 110px 80px; }
.exp-header { margin-bottom: 64px; }
.exp-header .lbl { margin-bottom: 14px; }
.exp-header h2 { font-family: var(--serif); font-size: clamp(30px,3.3vw,46px); font-weight: 400; max-width: 300px; line-height: 1.1; }
.exp-header p { font-size: 13px; color: #666; max-width: 430px; margin-top: 14px; line-height: 1.82; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px 76px; }
.exp-num { font-family: var(--serif); font-size: 58px; font-weight: 300; color: rgba(0,0,0,0.055); line-height: 1; margin-bottom: -8px; }
.exp-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.exp-bar { width: 30px; height: 2px; background: var(--black); margin-bottom: 12px; }
.exp-item p { font-size: 13px; line-height: 1.88; color: #555; }

/* ============================================================
   FRONT PAGE — TECH 3D
============================================================ */
#fp-tech {
  background: var(--black); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 20px 80px;
  min-height: auto !important;
}
.tech-content {
  padding: 32px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.tech-content .lbl { color: #555; margin-bottom: 18px; }
.tech-content .lbl::before { background: #555; }
.tech-content h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  margin-bottom: 14px;
}
.tech-content p { font-size: 12px; line-height: 1.7; color: #aaa; max-width: 400px; }
.tech-img {
  padding: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tech-img img,
.tech-img video {
  width: 100%;
  height: 220px !important;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FRONT PAGE — HARMONIE
============================================================ */
#fp-harmonie { padding: 110px 80px; }
.harm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 76px; }
.harm-row:last-child { margin-bottom: 0; }
.harm-text h2 { font-family: var(--serif); font-size: clamp(22px,2.4vw,34px); font-weight: 500; margin-bottom: 20px; line-height: 1.28; }
.harm-text p { font-size: 13px; line-height: 1.88; color: #555; margin-bottom: 14px; }
.imgs-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.imgs-2col img:first-child { grid-row: span 2; height: 452px; object-fit: cover; display: block; width: 100%; }
.imgs-2col img:not(:first-child) { height: 218px; object-fit: cover; display: block; width: 100%; }
.imgs-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.imgs-3col img { height: 196px; object-fit: cover; display: block; width: 100%; }

/* ============================================================
   FRONT PAGE — PROJETS CTA
============================================================ */
#fp-projets-cta { padding: 110px 80px; background: var(--off-white); text-align: center; }
#fp-projets-cta .lbl-c { margin-bottom: 18px; }
#fp-projets-cta h2 { font-family: var(--serif); font-size: clamp(36px,4vw,56px); font-weight: 400; margin-bottom: 18px; }
#fp-projets-cta p { font-size: 14px; line-height: 1.8; color: #666; margin-bottom: 36px; }

/* ============================================================
   FRONT PAGE — RÉFÉRENCES
============================================================ */
#fp-refs { padding: 90px 80px; text-align: center; }
#fp-refs .lbl-c { margin-bottom: 18px; }
#fp-refs h2 { font-family: var(--serif); font-size: clamp(26px,2.8vw,40px); font-weight: 400; margin-bottom: 52px; }
.logos-grid { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid #e4e4e4; margin-bottom: 44px; }
.logo-cell {
  padding: 30px 18px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;
}
.logo-cell:nth-child(5n) { border-right: none; }
.logo-cell:nth-last-child(-n+5) { border-bottom: none; }
.logo-cell img { max-height: 34px; filter: grayscale(100%); opacity: 0.55; transition: all .2s; }
.logo-cell img:hover { opacity: 1; filter: grayscale(0%); }
.logo-cell span { font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #888; text-align: center; }

/* ============================================================
   PAGE L'AGENCE
============================================================ */
#ag-histoire { padding: 96px 80px; }
.ag-histoire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.ag-hist-text .lbl { margin-bottom: 18px; }
.ag-hist-text h2 { font-family: var(--serif); font-size: clamp(26px,2.8vw,42px); font-weight: 500; line-height: 1.18; margin-bottom: 26px; }
.ag-hist-text h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 24px 0 12px; }
.ag-hist-text p { font-size: 13px; line-height: 1.9; color: #555; margin-bottom: 16px; }
.ag-hist-text blockquote { border-left: 3px solid var(--black); padding-left: 18px; margin: 24px 0; font-family: var(--serif); font-style: italic; font-size: 15.5px; line-height: 1.7; color: #333; }
.ag-hist-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.stats-bar { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid #ddd; margin-top: 32px; }
.stat-cell { padding: 24px; text-align: center; border-right: 1px solid #ddd; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 4px; }
.stat-lbl { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-gray); }

#ag-equipe { background: var(--off-white); padding: 96px 80px; }
.ag-equipe-hdr { text-align: center; margin-bottom: 68px; }
.ag-equipe-hdr .lbl-c { margin-bottom: 14px; }
.ag-equipe-hdr h2 { font-family: var(--serif); font-size: clamp(34px,3.8vw,52px); font-weight: 400; }
.ag-banner { width: 100%; max-width: 960px; margin: 0 auto 72px; }
.ag-banner img { width: 100%; height: 440px; object-fit: cover; display: block; }
.arch-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e0e0e0; }
.arch-card { display: grid; grid-template-columns: 160px 1fr; gap: 32px; padding: 48px 48px; align-items: start; border-bottom: 1px solid #e0e0e0; }
.arch-card.right { grid-template-columns: 1fr 160px; border-left: 1px solid #e0e0e0; }
.arch-card.right .arch-text { text-align: right; order: 0; }
.arch-card.right .arch-photo { order: 1; }
.arch-photo img { width: 160px; height: 210px; object-fit: cover; display: block; }
.arch-text h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 5px; }
.arch-role { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-gray); display: block; margin-bottom: 18px; }
.arch-text p { font-size: 13px; line-height: 1.88; color: #555; }
.arch-divider { width: 100%; height: 1px; background: #e0e0e0; margin-top: 18px; }

/* ============================================================
   PAGE EXPERTISE
============================================================ */
#ex-services { padding: 110px 80px; background: var(--white); }
.ex-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ex-list { display: flex; flex-direction: column; gap: 8px; }
.ex-item { padding: 34px 0; display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; }
.ex-item + .ex-item { border-top: 1px solid #ececec; }
.ex-icon {
  width: 52px; height: 52px;
  background: #f3f2f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}
.ex-icon svg { width: 22px; height: 22px; display: block; }
.ex-item:hover .ex-icon { background: var(--black); color: var(--white); }
.ex-text h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.ex-text p { font-size: 13px; line-height: 1.88; color: #666; }
.ex-sticky { position: sticky; top: calc(var(--nav-h) + 20px); }
.ex-sticky img { width: 100%; height: 620px; object-fit: cover; display: block; }
.ex-sticky .ph { height: 620px; }

#ex-philo { background: var(--light-gray); padding: 110px 80px; text-align: center; }
#ex-philo .lbl-c { margin-bottom: 36px; }
#ex-philo blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400; font-style: italic;
  line-height: 1.32;
  max-width: 880px;
  margin: 0 auto 28px;
  color: #111;
}
#ex-philo .divider { margin: 0 auto 28px; }
#ex-philo p { font-size: 14px; line-height: 1.9; color: #555; max-width: 640px; margin: 0 auto 36px; }

/* ============================================================
   PAGE PROJETS — HERO
============================================================ */
.proj-hero { padding-bottom: 80px; }
.proj-hero h1 { letter-spacing: 0.01em; }
.proj-hero p { font-size: 14.5px; line-height: 1.9; color: #999; max-width: 540px; }

/* ============================================================
   FILTRES — BARRE STICKY
============================================================ */
.filters-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  padding: 0 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filters-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 20px 26px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--mid-gray);
  border-bottom: 3px solid transparent;
  transition: all .22s;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-btn.active { background: var(--black); color: var(--white); border-bottom-color: transparent; }
.filter-btn:not(.active):hover { color: var(--black); border-bottom-color: var(--black); }

/* ============================================================
   GRILLE PROJETS
============================================================ */
#proj-grid {
  padding: 0;
  background: var(--white);
}
.proj-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 100%;
}
.proj-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
}
.proj-card.hidden { display: none; }
.proj-card-img {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #e0ddd8;
}
.proj-card-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.proj-card:hover .proj-card-img img { transform: scale(1.04); }
.proj-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.94);
  padding: 5px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.proj-info {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e8e8e8;
}
.proj-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.proj-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: #0a0a0a;
}
.proj-status {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #ddd;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ============================================================
   CTA BANDE FINALE PROJETS
============================================================ */
.proj-cta-band {
  background: var(--black);
  color: var(--white);
  padding: 90px 80px;
  text-align: center;
}
.proj-cta-inner { max-width: 560px; margin: 0 auto; }
.proj-cta-inner .lbl-w { justify-content: center; margin-bottom: 22px; }
.proj-cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.1;
}
.proj-cta-inner p { font-size: 14px; line-height: 1.85; color: #999; margin-bottom: 36px; }

/* ============================================================
   SINGLE PROJET
============================================================ */
#sp-header { padding-top: var(--nav-h); }
.sp-hero-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 0; padding: 0 80px; padding-top: 40px; }
.sp-hero-imgs img { width: 100%; height: 460px; object-fit: cover; display: block; }
.sp-title-block { text-align: center; padding: 48px 80px; }
.sp-city { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--mid-gray); margin-bottom: 10px; }
.sp-title { font-family: var(--serif); font-size: clamp(36px,5vw,72px); font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.sp-status-tag { display: inline-block; border: 1px solid #ccc; padding: 7px 18px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); }

#sp-avap { padding: 60px 80px; border-top: 1px solid #f0f0f0; }
.avap-label { text-align: center; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 6px; }
.avap-title { font-family: var(--serif); font-size: clamp(24px,2.8vw,38px); font-weight: 400; text-align: center; margin-bottom: 28px; }
.avap-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 28px; }
.avap-tab { padding: 12px 24px; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border: 1px solid #e0e0e0; background: var(--white); transition: all .2s; }
.avap-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }
.avap-slider-wrap { position: relative; max-width: 660px; margin: 0 auto; user-select: none; }
.avap-slider-wrap img { width: 100%; display: block; }
.avap-slider-track { position: relative; overflow: hidden; }
.avap-after { position: absolute; top: 0; right: 0; bottom: 0; overflow: hidden; }
.avap-after img { position: absolute; right: 0; height: 100%; width: auto; max-width: none; }
.avap-handle { position: absolute; top: 0; bottom: 0; width: 3px; background: var(--white); cursor: ew-resize; transform: translateX(-50%); }
.avap-handle-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.avap-lbl-before { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,0.6); color: var(--white); padding: 4px 10px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.avap-lbl-after  { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.6); color: var(--white); padding: 4px 10px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.avap-hint { text-align: center; font-size: 11px; color: var(--mid-gray); margin-top: 12px; }

#sp-desc { padding: 60px 80px; border-top: 1px solid #f0f0f0; }
.sp-desc-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.sp-cat { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 12px; border-bottom: 1px solid #e8e8e8; padding-bottom: 12px; width: 100%; }
.sp-desc-inner p { font-size: 13.5px; line-height: 1.9; color: #444; margin-bottom: 14px; }

#sp-gallery { padding: 40px 80px 96px; }
.sp-gal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sp-gal-grid img { width: 100%; height: 380px; object-fit: cover; display: block; }
.sp-gal-grid .sp-gal-full { grid-column: span 2; height: 280px; }
.sp-nav { padding: 32px 80px 80px; display: flex; justify-content: space-between; border-top: 1px solid #e8e8e8; }

/* ============================================================
   PAGE ACTUALITÉS
============================================================ */
#act-content { padding: 80px; }
.act-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #e0e0e0; margin-bottom: 72px; }
.act-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.act-body .lbl { margin-bottom: 18px; }
.act-body h2 { font-family: var(--serif); font-size: clamp(26px,2.8vw,40px); font-weight: 400; margin-bottom: 8px; }
.act-source { font-size: 12px; color: var(--mid-gray); margin-bottom: 16px; }
.act-body p { font-size: 13px; line-height: 1.85; color: #555; margin-bottom: 28px; }
.act-slider { position: relative; overflow: hidden; min-height: 420px; background: var(--off-white); }
.act-slider img { width: 100%; height: 100%; object-fit: contain; display: block; min-height: 420px; }
.slide { display: none; }
.slide.active { display: block; }
.slider-ui { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.92); }
.sl-arr { width: 32px; height: 32px; border: 1px solid #ccc; background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s; }
.sl-arr:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.sl-meta { display: flex; align-items: center; gap: 12px; }
.sl-count { font-size: 10px; color: var(--mid-gray); }
.sl-dots { display: flex; gap: 6px; }
.sl-dot { width: 6px; height: 6px; border-radius: 50%; background: #ccc; cursor: pointer; transition: background .2s; }
.sl-dot.active { background: var(--black); }
.sl-expand { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); }

/* Articles grille actualités */
.act-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.act-card { border: 1px solid #e8e8e8; overflow: hidden; transition: box-shadow .3s; }
.act-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.act-card-link { display: block; text-decoration: none; color: inherit; }
.act-card-img { overflow: hidden; }
.act-card-img img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .5s ease, filter .5s ease; filter: grayscale(100%); }
.act-card:hover .act-card-img img { transform: scale(1.04); filter: grayscale(0%); }
.act-card-body { padding: 24px; }
.act-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.act-card-cat { border: 1px solid #ccc; padding: 4px 10px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: #555; }
.act-card-date,.act-card-time { font-size: 10px; color: #aaa; letter-spacing: .06em; }
.act-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 500; line-height: 1.3; margin-bottom: 12px; color: #0a0a0a; }
.act-card-excerpt { font-size: 13px; line-height: 1.8; color: #666; margin-bottom: 18px; }
.act-card-read { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #0a0a0a; border-bottom: 1px solid #0a0a0a; padding-bottom: 2px; }

#act-insta { padding: 0 80px 72px; }
.insta-wrap { border: 1px solid #e0e0e0; overflow: hidden; }
.insta-hdr { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e8e8e8; }
.insta-handle { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.insta-cell { aspect-ratio: 1; overflow: hidden; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .3s, transform .3s; display: block; }
.insta-cell:hover img { filter: grayscale(0%); transform: scale(1.05); }
.insta-ftr { text-align: center; padding: 14px; border-top: 1px solid #e8e8e8; }
.insta-ftr a { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); }
.insta-ftr a:hover { color: var(--black); }

.cta-band { margin: 0 80px 96px; background: var(--black); color: var(--white); padding: 60px; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(26px,2.8vw,40px); font-weight: 400; margin-bottom: 14px; }
.cta-band p { font-size: 14px; line-height: 1.8; color: #aaa; max-width: 500px; margin: 0 auto 28px; }

/* ============================================================
   PAGE PRESSE
============================================================ */
#pr-featured { padding: 80px; }
.pr-article { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #e0e0e0; margin-bottom: 40px; align-items: stretch; }
.pr-art-img { overflow: hidden; }
.pr-art-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 420px; }
.pr-art-body { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.pr-art-body .lbl { margin-bottom: 18px; }
.pr-art-body h2 { font-family: var(--serif); font-size: clamp(26px,2.8vw,38px); font-weight: 400; margin-bottom: 12px; }
.pr-art-source { font-size: 12px; color: var(--mid-gray); margin-bottom: 18px; }
.pr-art-body p { font-size: 13px; line-height: 1.85; color: #555; margin-bottom: 28px; }
.btn-blk-ext { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--white); padding: 14px 28px; font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; transition: background .2s; }
.btn-blk-ext:hover { background: #333; color: var(--white); }

#pr-nobilis { padding: 0 80px; }
.pr-nob-lbl { margin-bottom: 36px; }
.pr-nob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 72px; }
.pr-nob-card { border: 1px solid #e0e0e0; overflow: hidden; cursor: pointer; transition: box-shadow .2s; }
.pr-nob-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.pr-nob-img { aspect-ratio: 3/4; overflow: hidden; }
.pr-nob-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.pr-nob-card:hover .pr-nob-img img { transform: scale(1.04); }
.pr-nob-meta { padding: 16px 18px; }
.pr-nob-src { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 5px; }
.pr-nob-title { font-family: var(--serif); font-size: 17px; font-weight: 500; }

#pr-mag { padding: 0 80px 96px; }
.pr-mag-lbl { margin-bottom: 40px; }

/* ============================================================
   FOOTER
============================================================ */
#ldp-footer { background: var(--black); color: var(--white); padding: 68px 80px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.f-brand-name { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 7px; }
.f-brand-sub { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #555; margin-bottom: 18px; }
.f-brand-desc { font-size: 13px; line-height: 1.8; color: #aaa; max-width: 340px; margin-bottom: 26px; }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 36px; height: 36px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 11px; font-weight: 500; transition: all .2s; }
.f-social a:hover { border-color: var(--white); color: var(--white); }
.f-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid #222; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a { font-size: 13px; color: #aaa; transition: color .2s; }
.f-col ul li a:hover { color: var(--white); }
.f-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.f-ico { font-size: 14px; color: #444; margin-top: 2px; flex-shrink: 0; }
.f-contact-txt { font-size: 13px; color: #aaa; line-height: 1.5; }
.f-contact-sub { font-size: 11px; color: #444; }
.f-write { display: inline-block; border: 1px solid #333; color: var(--white); padding: 10px 20px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; transition: all .2s; margin-top: 10px; }
.f-write:hover { background: var(--white); color: var(--black); }
.f-bottom { border-top: 1px solid #1a1a1a; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; }
.f-bottom p { font-size: 11px; color: #3a3a3a; }
.f-legal { display: flex; gap: 26px; }
.f-legal a { font-size: 11px; color: #3a3a3a; transition: color .2s; }
.f-legal a:hover { color: var(--white); }

/* ============================================================
   PLACEHOLDERS
============================================================ */
.ph {
  background: var(--bg, #c8c4c0);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.35); font-size: 12px; font-family: var(--sans);
  width: 100%; height: var(--h, 400px);
}

/* ============================================================
   FORCE GUTENBERG — pages projet
============================================================ */
.ldp-texte-inner .wp-block-columns,
.ldp-texte-inner .wp-block-column,
.ldp-texte-inner .wp-block-group,
.ldp-texte-inner .wp-block-group__inner-container,
.ldp-texte-inner [class*="wp-block"] {
  display: block !important;
  width: 100% !important;
  max-width: 660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  flex: none !important;
  columns: unset !important;
  grid-template-columns: unset !important;
}
.ldp-texte-inner p,
.ldp-texte-inner h2,
.ldp-texte-inner h3 {
  display: block !important;
  width: 100% !important;
  max-width: 660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  text-align: left !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px !important;
  line-height: 2.0 !important;
  color: #555 !important;
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 900px) {
  .filters-bar { padding: 0 24px; }
  #proj-grid { padding: 0; }
  .proj-masonry { grid-template-columns: 1fr; gap: 0; }
  .proj-cta-band { padding: 72px 24px; }
  .act-articles-grid { grid-template-columns: 1fr; }
  #act-content { padding: 40px 20px; }
  .cta-band { margin: 0 20px 72px; }
}

@media (max-width: 768px) {

  /* --- MENU --- */
  #nav-mobile-toggle { display: flex; }
  .nav-menu { display: none; }
  #ldp-nav { padding: 0 20px; }
  .nav-logo-img { height: 34px; }

  /* --- HERO --- */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 40px 24px; }
  .hero-right { display: none; }
  .hero-title { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; text-align: center; }

  /* --- BAND PROJET --- */
  #fp-band {
    flex-direction: column;
    padding: 48px 24px;
    gap: 28px;
    text-align: center;
  }

  /* --- AGENCE INTRO --- */
  #fp-agence { padding: 64px 24px; }

  /* --- APPROCHE --- */
  #fp-approche {
    grid-template-columns: 1fr;
  }
  .approche-img { min-height: 260px; max-height: 260px; }
  .approche-img img { width: 100%; height: 100%; }
  .approche-content { padding: 40px 24px; }
  .approche-pillars { grid-template-columns: 1fr 1fr; }

  /* --- EXPERTISE HOME --- */
  #fp-expertise { padding: 64px 24px; }
  .exp-grid { grid-template-columns: 1fr; gap: 32px; }

  /* --- TECH 3D --- */
  #fp-tech {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .tech-content { padding: 0 0 24px 0; }
  .tech-img { padding: 0; }
  .tech-img img, .tech-img video { height: 200px !important; }

  /* --- HARMONIE --- */
  #fp-harmonie { padding: 64px 24px; }
  .harm-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .imgs-2col { grid-template-columns: 1fr; }
  .imgs-2col img:first-child { grid-row: span 1; height: 260px; }
  .imgs-2col img:not(:first-child) { height: 180px; }
  .imgs-3col { grid-template-columns: 1fr 1fr; }
  .imgs-3col img { height: 150px; }

  /* --- PROJETS CTA --- */
  #fp-projets-cta { padding: 64px 24px; }

  /* --- RÉFÉRENCES --- */
  #fp-refs { padding: 64px 24px; }
  .logos-grid { grid-template-columns: repeat(3,1fr); }
  .logo-cell:nth-child(3n) { border-right: none; }
  .logo-cell:nth-child(5n) { border-right: 1px solid #e4e4e4; }

  /* --- PAGE AGENCE --- */
  #ag-histoire { padding: 48px 24px; }
  .ag-histoire-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid #ddd; }
  .stat-cell:last-child { border-bottom: none; }
  #ag-equipe { padding: 48px 24px; }
  .arch-grid { grid-template-columns: 1fr; }
  .arch-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .arch-card.right { grid-template-columns: 1fr; }
  .arch-card.right .arch-text { order: 1; text-align: left; }
  .arch-card.right .arch-photo { order: 0; }
  .arch-card.right { border-left: none; }
  .arch-photo img { width: 100%; height: 260px; }

  /* --- PAGE EXPERTISE --- */
  #ex-services { padding: 48px 24px; }
  .ex-layout { grid-template-columns: 1fr; gap: 40px; }
  .ex-sticky { display: none; }
  #ex-philo { padding: 48px 24px; }

  /* --- PAGE HERO --- */
  .page-hero { padding: calc(var(--nav-h) + 40px) 24px 48px; }

  /* --- FILTRES --- */
  .filters-bar { padding: 0 16px; }

  /* --- SINGLE PROJET --- */
  .sp-hero-imgs { grid-template-columns: 1fr; padding: 16px 24px; gap: 8px; }
  .sp-hero-imgs img { height: 280px; }
  .sp-title-block { padding: 32px 24px; }
  #sp-avap { padding: 40px 24px; }
  #sp-desc { padding: 40px 24px; }
  #sp-gallery { padding: 24px 24px 64px; }
  .sp-gal-grid { grid-template-columns: 1fr; }
  .sp-gal-grid img { height: 260px; }
  .sp-gal-grid .sp-gal-full { grid-column: span 1; height: 220px; }
  .sp-nav { padding: 24px; flex-direction: column; gap: 16px; }

  /* --- ACTUALITÉS --- */
  .act-featured { grid-template-columns: 1fr; }
  .act-body { padding: 32px 24px; }
  .act-slider, .act-slider img { min-height: 260px; }
  #act-insta { padding: 0 24px 48px; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }

  /* --- PRESSE --- */
  #pr-featured { padding: 48px 24px; }
  .pr-article { grid-template-columns: 1fr; }
  .pr-art-img img { min-height: 260px; }
  .pr-art-body { padding: 32px 24px; }
  #pr-nobilis { padding: 0 24px; }
  .pr-nob-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  #pr-mag { padding: 0 24px 64px; }

  /* --- FOOTER --- */
  #ldp-footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .f-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .f-legal { flex-wrap: wrap; justify-content: center; }

  /* --- BOUTONS --- */
  .btn-blk, .btn-ol, .btn-olw {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* --- PROJ CARD --- */
  .proj-card-img { height: 280px; }

}

@media (max-width: 768px) {
  .proj-masonry {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2px !important;
  }
  .proj-masonry .proj-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}