/* ════════════════════════════════════════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════   STYLE.CSS GRAPHIPLUS   ═══════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════════════════════════════════════════════ */

:root {
  --navy: #160a03;
  --navy-mid: #a17154;
  --gold: #b49c87;
  --gold-light: #E7DDD2;
  --gold-pale: #F3ECE5;
  --cream: #F7F3EE;
  --cream-dark: #EFE7DE;
  --text: #1F1A17;
  --text-muted: #5b4d3e;
  --white: #FFFFFF;
  --border-gold: #DDD1C5;
  --cta: #977e68;
  --cta-hover: #6d5744;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden
}

.serif {
  font-family: 'Nunito', Georgia, sans-serif
}

/* Nunito — corps de texte alternatif */
.nunito {
  font-family: 'Nunito', sans-serif
}

.nunito-light {
  font-family: 'Nunito', sans-serif;
  font-weight: 300
}

.nunito-extralight {
  font-family: 'Nunito', sans-serif;
  font-weight: 200
}

a {
  text-decoration: none
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200
}

.nav-top {
  background: var(--white);
  border-bottom: 1px solid rgba(200, 169, 110, 0.25)
}

.nav-top-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 120px
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block
}

.nav-logo-main {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 25px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1
}

.nav-logo-sub {
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase
}

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

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

.nav-lang-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(15, 24, 35, 0.35);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s
}

.nav-lang-item:hover,
.nav-lang-item.active {
  color: var(--gold)
}

.nav-lang-sep {
  font-size: 9px;
  color: rgba(15, 24, 35, 0.2)
}

.nav-cta {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 12px 24px;
  transition: background 0.2s
}

.nav-cta:hover {
  background: var(--gold-light)
}

.nav-left {
  min-width: 180px;
  display: flex;
  align-items: center
}

.nav-search {
  font-size: 30px;
  color: rgba(15, 24, 35, 0.35);
  cursor: pointer;
  transition: color 0.2s
}

.nav-search:hover {
  color: var(--gold)
}

.nav-bar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2)
}

.nav-item-home { display: none; }

.nav-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 48px
}

.nav-item a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 24, 35, 0.65);
  padding: 0 18px;
  height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

.nav-spacer {
  flex: 1
}

.nav-secondary a {
  color: rgba(15, 24, 35, 0.45)
}

/* ═══════════════════════════════════════
   DROPDOWN NAV
═══════════════════════════════════════ */
.nav-item {
  position: relative
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(15, 24, 35, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 300;
  padding: 8px 0
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-dropdown a {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 24, 35, 0.6);
  padding: 10px 22px;
  border-bottom: none !important;
  height: auto !important;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap
}

.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(200, 169, 110, 0.05);
  border-bottom-color: transparent !important
}

.nav-dropdown-sep {
  height: 1px;
  background: rgba(200, 169, 110, 0.18);
  margin: 5px 18px
}

.nav-item-arrow::after {
  content: ' ›';
  font-size: 12px;
  opacity: 0.4;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  transform-origin: center center
}

.nav-item:hover .nav-item-arrow::after {
  opacity: 0.9;
  transform: rotate(90deg)
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: 162px;
  height: calc(100vh - 250px);
  min-height: 700px;
  overflow: hidden;
  background: var(--navy)
}

.slides-wrap {
  position: absolute;
  inset: 0
}

.slide {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none
}

.slide.active {
  opacity: 1;
  pointer-events: auto
}

/* Si chaque slide a une image de fond réelle */
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 24, 35, 0.85) 0%,
      rgba(15, 24, 35, 0.45) 35%,
      rgba(15, 24, 35, 0.00) 60%);
  z-index: 1
}

/* Fallback coloré si pas d'image */
.slide-bg-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0
}

.slide-col {
  flex: 1;
  height: 100%
}

.fb0a {
  background: linear-gradient(160deg, #1a1030 0%, #0d0820 100%)
}

.fb0b {
  background: linear-gradient(160deg, #12201a 0%, #0a1510 100%)
}

.fb1a {
  background: linear-gradient(160deg, #201008 0%, #100804 100%)
}

.fb1b {
  background: linear-gradient(160deg, #201612 0%, #15100e 100%)
}

.fb2a {
  background: linear-gradient(160deg, #101820 0%, #0a1218 100%)
}

.fb2b {
  background: linear-gradient(160deg, #181016 0%, #100a0e 100%)
}

.fb3a {
  background: linear-gradient(160deg, #1a1816 0%, #0d0c0a 100%)
}

.fb3b {
  background: linear-gradient(160deg, #121612 0%, #0a100a 100%)
}

.fb4a {
  background: linear-gradient(160deg, #0e1820 0%, #08101a 100%)
}

.fb4b {
  background: linear-gradient(160deg, #1a1410 0%, #120e08 100%)
}

.fb5a {
  background: linear-gradient(160deg, #101010 0%, #080808 100%)
}

.fb5b {
  background: linear-gradient(160deg, #121212 0%, #0a0a0a 100%)
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.slide-text {}

.slide-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.1s, transform 0.6s 0.1s
}

.slide-tag::before {
  content: none;
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold)
}

.slide-tagnum {
  font-size: 9px;
  color: rgba(200, 169, 110, 0.4);
  letter-spacing: 0.15em
}

.slide h1,
.slide .slide-h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s
}

.slide h1 em,
.slide .slide-h1 em {
  font-style: normal;
  color: var(--gold)
}

.slide-sub {
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(250, 248, 243, 0.62);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.3s, transform 0.7s 0.3s
}

.slide-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s 0.35s, transform 0.7s 0.35s
}

.slide-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 248, 243, 0.48)
}

.slide-detail::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s 0.42s, transform 0.7s 0.42s
}

/* Panneau droit : carte métier */
.slide-card {
  position: relative;
  border: 1px solid rgba(200, 169, 110, 0.2);
  background: rgba(15, 24, 35, 0.6);
  backdrop-filter: blur(12px);
  padding: 32px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.8s 0.35s, transform 0.8s 0.35s
}

.slide-card-icon {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15)
}

.slide-card-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px
}

.sc-stat {
  text-align: center;
  padding: 12px;
  background: rgba(200, 169, 110, 0.06)
}

.sc-stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1
}

.sc-stat-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.35);
  margin-top: 4px
}

.slide-card-clients {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 243, 0.35);
  margin-bottom: 8px;
  text-transform: uppercase
}

.slide-card-names {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: rgba(250, 248, 243, 0.55);
  line-height: 1.7;
  font-style: italic
}

.slide-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  padding-top: 16px;
  width: 100%
}

.slide-card-link::after {
  content: '→';
  transition: transform 0.2s
}

.slide-card:hover .slide-card-link::after {
  transform: translateX(4px)
}

.slide.active .slide-tag,
.slide.active h1,
.slide.active .slide-h1,
.slide.active .slide-sub,
.slide.active .slide-details,
.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0)
}

.slide.active .slide-card {
  opacity: 1;
  transform: translateX(0)
}

.btn-gold {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 14px 28px;
  display: inline-block;
  transition: background 0.2s
}

.btn-gold:hover {
  background: var(--gold-light)
}

.btn-ghost-light {
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.6);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  transition: color 0.2s, border-color 0.2s
}

.btn-ghost-light:hover {
  color: var(--gold);
  border-color: var(--gold)
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px
}

.dot {
  width: 22px;
  height: 2px;
  background: rgba(200, 169, 110, 0.22);
  cursor: pointer;
  transition: background 0.3s, width 0.3s
}

.dot.active {
  width: 40px;
  background: var(--gold)
}

.hero-arrows {
  position: absolute;
  bottom: 34px;
  right: 48px;
  z-index: 10;
  display: flex;
  gap: 10px
}

.arrow-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 110, 0.7);
  background: rgba(15, 24, 35, 0.45);
  color: rgba(200, 169, 110, 0.9);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
  backdrop-filter: blur(4px)
}

.arrow-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(15, 24, 35, 0.65)
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 38px;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.hsi-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: pulse 2s ease infinite
}

.hsi-label {
  font-size: 8.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.4)
}

@keyframes pulse {

  0%,
  100% {
    opacity: .35
  }

  50% {
    opacity: 1
  }
}

/* ═══════════════════════════════════════
   LOGOS CLIENTS (marquee)
═══════════════════════════════════════ */
.trust {
  background: var(--cream);
  border-bottom: 1px solid var(--border-gold);
  padding: 30px 48px;
  overflow: hidden
}

.trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border-gold);
  flex-shrink: 0
}

.trust-track {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent)
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 50s linear infinite;
  width: max-content
}

.trust-logos:hover {
  animation-play-state: paused
}

.trust-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 32px;
  transition: color 0.2s;
  cursor: default
}

.trust-logo:hover {
  color: var(--text)
}

.trust-sep-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-gold);
  flex-shrink: 0
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
  background: var(--cream-dark)
}

.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(200, 169, 110, 0.22)
}

.stat {
  background: var(--cream-dark);
  padding: 56px 36px;
  text-align: center
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 66px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px
}

.stat-sup {
  font-size: 36px;
  vertical-align: super;
  margin-right: 2px
}

.stat-label {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 24, 35, 0.5)
}

/* ═══════════════════════════════════════
   SECTION UTIL
═══════════════════════════════════════ */
.section-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold)
}

.section-h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  color: var(--text)
}

.section-h2 em {
  font-style: normal;
  color: var(--gold)
}

.section-h2-light {
  color: var(--cream)
}

/* ═══════════════════════════════════════
   EXPERTISES
═══════════════════════════════════════ */
.expertises {
  padding: 108px 48px;
  background: var(--cream)
}

.expertises-inner {
  max-width: 1320px;
  margin: 0 auto
}

.expertises-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px
}

.expertises-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  align-self: end
}

/* ─── Flip cards expertises ─── */
.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  background: var(--cream)
}

/* Conteneur flip */
.exp-card {
  background: transparent;
  height: 380px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  cursor: pointer;
  position: relative
}

.exp-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1)
}

.exp-card:hover .exp-card-inner {
  transform: rotateY(180deg)
}

/* Face & Dos — commun */
.exp-face,
.exp-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* clip-path plutôt que overflow:hidden — Safari aplatit le preserve-3d si overflow:hidden est sur un enfant direct */
  clip-path: inset(0);
  display: flex;
  flex-direction: column
}

/* ── FACE ── */
.exp-face {
  background: var(--white)
}

.exp-face-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: center;
  filter: saturate(1) brightness(1);
  transition: transform 0.65s ease, filter 0.65s ease
}

.exp-card:hover .exp-face-img {
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.75)
}

.exp-card:hover .exp-face {
  pointer-events: none;
}

.exp-face-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--cream-dark) 0%, var(--cream) 100%);
  z-index: 0;
}

.exp-face-overlay {
  z-index: 2;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 24, 35, 0.85) 0%,
      rgba(15, 24, 35, 0.40) 30%,
      transparent 48%)
}

.exp-face-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 28px 28px 24px
}

.exp-num {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 3;
  font-size: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.exp-baseline {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.9);
  margin-bottom: 16px
}

.exp-title {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 4px
}

.exp-link {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s
}

.exp-link::after {
  content: '→'
}

.exp-card:hover .exp-link {
  gap: 13px
}

/* ── DOS ── */
.exp-back {
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: rotateY(180deg);
  padding: 32px 28px 28px;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.exp-back-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 24, 35, 0.18);
}

.exp-back-num {
  font-size: 12px;
  font-family: 'Nunito', sans-serif;
  color: rgba(15, 24, 35, 0.4);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.exp-back-num::after {
  content: ' —';
}

.exp-back-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.exp-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1
}

.exp-item {
  font-size: 14px;
  font-weight: 300;
  color: rgba(15, 24, 35, 0.75);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 9px
}

.exp-item::before {
  content: '·';
  color: rgba(15, 24, 35, 0.5);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.15
}

.exp-back-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid rgba(15, 24, 35, 0.15);
  padding-top: 16px
}

.exp-back-link::after {
  content: '→'
}

/* ═══════════════════════════════════════
   RÉALISATIONS — 8 TUILES
═══════════════════════════════════════ */
.realisations {
  padding: 108px 48px;
  background: var(--white)
}

.realisations-inner {
  max-width: 1320px;
  margin: 0 auto
}

.real-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px
}

/*
  Layout 8 tuiles :
  [ Grande (2×2) | moy | moy ]
  [              | moy | moy ]
  [ large (2×1)  | moy | moy ] ← 3e rangée
  Mais on va faire 2 rangées × 4 cols avec une variante :
  Col 1 : grande (row-span 2), cols 2-4 : rangée1×3 + rangée2×3 = 6 → total 7
  8e : on rajoute une bande basse large
*/
.real-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr 3fr;
  grid-template-rows: 280px 280px;
  gap: 3px
}

.tile {
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.tile-big {
  grid-row: span 2
}

/* image de fond */
.tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease, filter 0.4s;
  filter: saturate(0.8) brightness(1);
  z-index: 1
}

.tile:hover .tile-img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(0.95)
}

/* fallback couleur */
.tile-bg-fb {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.55s ease;
  z-index: 0
}

.tile:hover .tile-bg-fb {
  transform: scale(1.05)
}

.t1 {
  background: linear-gradient(135deg, #1a1030 0%, #0d0820 100%)
}

.t2 {
  background: linear-gradient(135deg, #1a100c 0%, #100808 100%)
}

.t3 {
  background: linear-gradient(135deg, #0a1820 0%, #061018 100%)
}

.t4 {
  background: linear-gradient(135deg, #181410 0%, #100e08 100%)
}

.t5 {
  background: linear-gradient(135deg, #101a0a 0%, #0c1408 100%)
}

.t6 {
  background: linear-gradient(135deg, #1a0a14 0%, #120810 100%)
}

.t7 {
  background: linear-gradient(135deg, #101820 0%, #08121a 100%)
}

.t8 {
  background: linear-gradient(135deg, #1c1410 0%, #14100c 100%)
}

.tile-art-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(200, 169, 110, 0.2);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 24, 35, 0.92) 0%, rgba(15, 24, 35, 0.2) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 2
}

.tile-brand {
  font-size: 8.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px
}

.tile-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px
}

.tile-meta {
  font-size: 9.5px;
  color: rgba(250, 248, 243, 0.4);
  letter-spacing: 0.08em
}

.tile-reveal {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 35, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3
}

.tile-reveal-btn {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 110, 0.4);
  padding: 10px 20px
}

.tile:hover .tile-reveal {
  opacity: 1
}

/* ═══════════════════════════════════════
   NOTRE MAISON
═══════════════════════════════════════ */
.maison {
  background: var(--white);
  padding: 108px 48px;
  position: relative;
  overflow: hidden
}

.maison::before {
  content: 'G';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 580px;
  color: rgba(200, 169, 110, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none
}

.maison-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.maison-h2 em {
  font-style: normal;
  color: var(--gold)
}

.maison-h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px
}

.maison-quote {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  /* ← ajouter */
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-bottom: 32px
}

.maison-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 14px
}

.maison-visual {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.m-img {
  position: relative;
  overflow: hidden;
  min-height: 0
}

.m-img.tall {}

.m-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
  transition: transform 0.5s, filter 0.4s;
  z-index: 1
}

.m-img:hover img {
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.80)
}

.m-img-fb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(to top,
      rgba(15, 24, 35, 0.72) 0%,
      rgba(15, 24, 35, 0.15) 40%,
      transparent 70%);
  /* ← dégradé sombre en bas uniquement */
  display: flex;
  align-items: flex-end;
  /* ← texte ancré en bas */
  padding: 18px 20px;
  box-sizing: border-box
}

.m-img:hover .m-img-fb {
  transform: scale(1.04);
  opacity: 1;
}

.m-award {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(15, 24, 35, 0.92);
  border: 1px solid var(--border-gold);
  padding: 13px 16px;
  backdrop-filter: blur(4px)
}

.m-award-label {
  font-size: 7.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px
}

.m-award-text {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--cream);
  font-style: italic;
  line-height: 1.4
}

.m-ivan-photo {
  aspect-ratio: 3 / 1
}

.m-ivan-photo img {
  object-position: center top
}

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

.m-row-3 .m-img {
  aspect-ratio: 1;
  height: auto
}


/* ═══════════════════════════════════════
   IDENTITÉ / TABS
═══════════════════════════════════════ */
.identite {
  padding: 90px 48px;
  background: var(--cream)
}

.identite-inner {
  max-width: 1320px;
  margin: 0 auto
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 52px;
  gap: 0
}

.tab-btn {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Jost', sans-serif
}

.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--gold)
}

.tab-btn:hover {
  color: var(--text)
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.tab-panel.active {
  display: grid
}

.tab-h3 {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.15;
  color: var(--text)
}

.tab-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 28px
}

.tab-items {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.tab-item {
  display: flex;
  align-items: flex-start;
  gap: 13px
}

.tab-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px
}

.tab-item-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  background: var(--cream-dark);
  padding: 108px 48px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  pointer-events: none
}

.contact-inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto
}

.contact-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 26px
}

.contact-h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px
}

.contact-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 50px
}

.contact-cities {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
  margin-top: -38px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  text-align: left;
  align-items: start
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.f-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy)
}

.f-req {
  color: var(--gold)
}

.f-hint {
  font-size: 13px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted)
}

select.f-input,
.f-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23c8a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px
}

.f-drop {
  background: #f5f5f3;
  border: 1.5px dashed rgba(200, 169, 110, 0.4);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  user-select: none
}

.f-drop:hover,
.f-drop.drag-over {
  background: rgba(200, 169, 110, 0.06);
  border-color: var(--gold)
}

.f-drop-svg {
  width: 30px;
  height: 30px;
  color: rgba(15, 24, 35, 0.28);
  margin: 0 auto 10px;
  display: block
}

.f-drop p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(15, 24, 35, 0.45);
  margin: 0
}

.f-drop-link {
  color: var(--gold);
  text-decoration: underline
}

.f-file {
  display: none
}

.f-drop-files {
  font-size: 12px;
  color: var(--gold);
  min-height: 16px
}

.f-drop-hint {
  font-size: 11px;
  color: rgba(15, 24, 35, 0.35);
  margin-top: 5px
}

.f-drop-wrap {
  overflow: hidden;
  max-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: max-height 0.35s ease
}

.f-drop-wrap.open {
  max-height: 220px
}

.f-file-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(200, 169, 110, 0.55);
  background: none;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  margin-left: 8px;
  vertical-align: middle;
  transition: background 0.2s;
  font-family: 'Jost', sans-serif
}

.f-file-toggle:hover {
  background: rgba(200, 169, 110, 0.1)
}

.f-check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer
}

.f-check {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer
}

.f-check-label span {
  font-size: 13px;
  font-weight: 300;
  color: rgba(15, 24, 35, 0.5);
  line-height: 1.6
}

.f-check-link {
  color: var(--gold)
}

.f-input {
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.35);
  box-sizing: border-box;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 48px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%
}

.f-input::placeholder {
  color: rgba(15, 24, 35, 0.3)
}

.f-input:focus {
  border-color: var(--gold)
}

.f-full {
  grid-column: span 2
}

.f-textarea {
  height: 110px;
  resize: none
}

.f-submit {
  width: 100%;
  grid-column: span 2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: none;
  padding: 17px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s
}

.f-submit:hover {
  background: var(--gold-light)
}

.f-privacy {
  font-size: 11px;
  color: rgba(15, 24, 35, 0.35);
  margin-top: 14px;
  text-align: center
}

.f-status {
  grid-column: 1 / -1;
  font-size: 12px;
  min-height: 18px;
}
.f-status--error { color: #c0392b; }

.f-success {
  grid-column: 1 / -1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold);
  text-align: center;
  padding: 32px 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  padding: 52px 48px 32px
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px
}

.footer-logo-main {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 23px;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 4px
}

.footer-logo-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase
}

.footer-logo-sub a {
  color: inherit;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.452);
  transition: color 0.2s
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-social {
  display: flex;
  gap: 10px
}

.soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(250, 248, 243, 0.35);
  transition: all 0.2s
}

.soc:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(161, 136, 90, 0.178);
  display: flex;
  justify-content: space-between
}

.footer-copy {
  font-size: 14px;
  color: rgba(250, 248, 243, 0.349);
  letter-spacing: 0.06em
}

.footer-cities {
  font-size: 16px;
  color: rgba(250, 248, 243, 0.92);
  letter-spacing: 0.1em
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════
   REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ═══════════════════════════════════════
   SLIDER D'IMAGES — PAGES INTÉRIEURES
═══════════════════════════════════════ */
.img-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--navy)
}

.img-slider.hero {
  height: 62vh;
  min-height: 420px;
  margin-top: 162px
}

.img-slider .islide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease
}

.img-slider .islide.active {
  opacity: 1
}

.img-slider .islide img,
.img-slider .islide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.img-slider .islide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 24, 35, 0.75) 0%,
      rgba(15, 24, 35, 0.30) 45%,
      transparent 70%)
}

.islider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10
}

.islider-nav .idot {
  width: 22px;
  height: 2px;
  background: rgba(200, 169, 110, 0.22);
  cursor: pointer;
  transition: background 0.3s, width 0.3s
}

.islider-nav .idot.active {
  width: 40px;
  background: var(--gold)
}

.islider-btn {
  position: absolute;
  top: auto;
  bottom: 34px;
  transform: none;
  z-index: 10;
  background: rgba(15, 24, 35, 0.45);
  border: 1px solid rgba(200, 169, 110, 0.7);
  color: rgba(200, 169, 110, 0.9);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  backdrop-filter: blur(4px);
  transition: all 0.2s
}

.islider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(15, 24, 35, 0.65)
}

.islider-btn.prev {
  left: auto;
  right: 96px
}

.islider-btn.next {
  right: 48px
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 35, 0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  cursor: default
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--cream);
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  user-select: none
}

.lightbox-close:hover {
  opacity: 1
}

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.6)
}

/* ═══════════════════════════════════════
   PAGE INTRO — PAGES INTÉRIEURES
═══════════════════════════════════════ */
.page-intro {
  background: var(--cream-dark);
  padding: 88px 48px;
  border-bottom: 1px solid var(--border-gold)
}

.page-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center
}

.page-intro-inner h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 36px
}

.page-intro-inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px
}

.page-intro-inner p:last-of-type {
  margin-bottom: 0
}

.page-intro-inner .btn-gold {
  display: inline-block;
  margin-top: 28px
}

/* ═══════════════════════════════════════
   EDITO DARK — PAGES INTÉRIEURES
═══════════════════════════════════════ */
.edito-dark {
  background: var(--navy);
  padding: 88px 48px;
  position: relative;
  overflow: hidden
}

.edito-dark::before {
  content: 'G';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 480px;
  color: rgba(200, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none
}

.edito-dark-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.edito-dark-inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 248, 243, 0.6);
  margin-bottom: 20px
}

.edito-dark-inner p:last-of-type {
  margin-bottom: 0
}

.edito-dark-inner .btn-gold {
  display: inline-block;
  margin-top: 36px
}

/* ═══════════════════════════════════════
   COMPOSANTS — PAGES CALLIGRAPHIE
═══════════════════════════════════════ */

/* ── Fil d'Ariane flottant sur hero ── */
.hero-breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 11px 48px;
  background: rgba(15, 24, 35, 0.35);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
  display: flex;
  align-items: center;
  gap: 10px
}

.hero-breadcrumb a,
.hero-breadcrumb span {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.55);
  transition: color 0.2s
}

.hero-breadcrumb a:hover {
  color: var(--gold)
}

.hero-breadcrumb .bc-sep {
  color: rgba(200, 169, 110, 0.25)
}

.hero-breadcrumb span:last-child {
  color: var(--gold)
}

/* ── Intro éditoriale ── */
.intro-edito {
  background: var(--cream);
  padding: 90px 48px;
  border-bottom: 1px solid var(--border-gold)
}

.intro-edito-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start
}

.intro-edito-label {
  position: sticky;
  top: 180px
}

.intro-edito-label .section-tag {
  margin-bottom: 16px
}

.intro-edito-label h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--text)
}

.intro-edito-label h2 em {
  font-style: italic;
  color: var(--gold)
}

.intro-edito-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 22px
}

.intro-edito-body p:last-child {
  margin-bottom: 0
}

.intro-edito-body strong {
  font-weight: 400;
  color: var(--text)
}

/* ── Grilles de styles calligraphiques ── */
.styles-section {
  padding: 90px 48px
}

.styles-section.light {
  background: var(--white)
}

.styles-section.dark {
  background: var(--cream)
}

.styles-inner {
  max-width: 1320px;
  margin: 0 auto
}

.styles-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-gold)
}

.styles-head h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  color: var(--text)
}

.styles-head h2 em {
  font-style: italic;
  color: var(--gold)
}

.styles-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.3);
  line-height: 1
}

.styles-grid-5,
.styles-grid-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px
}

/* ── Tuile de style ── */
.style-card {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 1;
  background: var(--navy)
}

.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) brightness(0.85);
  transition: transform 0.6s ease, filter 0.5s;
  z-index: 1
}

.style-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.95) brightness(0.7)
}

.style-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 24, 35, 0.80) 0%,
      rgba(15, 24, 35, 0.30) 18%,
      rgba(15, 24, 35, 0.05) 25%,
      transparent 30%);
  z-index: 2;
  transition: background 0.4s
}

.style-card:hover .style-card-gradient {
  background: linear-gradient(to top,
      rgba(15, 24, 35, 0.95) 0%,
      rgba(15, 24, 35, 0.80) 22%,
      rgba(15, 24, 35, 0.45) 42%,
      rgba(15, 24, 35, 0.08) 55%,
      transparent 60%)
}

.style-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px 8px;
  z-index: 3
}

.style-card-name {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 8px
}

.style-card-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250, 248, 243, 0.55);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  opacity: 0;
  margin-bottom: 0
}

.style-card:hover .style-card-desc {
  max-height: 100px;
  opacity: 1
}

.style-card-tag {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

/* ── Savoir-faire ── */
.savoir-faire {
  background: var(--navy);
  padding: 108px 48px;
  position: relative;
  overflow: hidden
}

.savoir-faire::before {
  content: 'G';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 520px;
  color: rgba(200, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none
}

.savoir-faire-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 1
}

.sf-block .section-tag {
  margin-bottom: 20px
}

.sf-h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px
}

.sf-h3 em {
  font-style: italic;
  color: var(--gold)
}

.sf-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 248, 243, 0.55);
  margin-bottom: 18px
}

.sf-techniques {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(200, 169, 110, 0.12)
}

.sf-technique {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 248, 243, 0.5);
  line-height: 1.5
}

.sf-technique::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px
}

/* ── Section animations retail (visuelle) ── */
.animations-section {
  background: var(--cream-dark);
  padding: 108px 48px;
  position: relative;
  overflow: hidden
}

.animations-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.anim-visual {
  position: relative;
  height: 500px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px
}

.anim-img {
  position: relative;
  overflow: hidden
}

.anim-img.tall {
  grid-row: span 2
}

.anim-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 0.5s ease, filter 0.4s
}

.anim-img:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.95)
}

.anim-text .section-tag {
  margin-bottom: 20px
}

.anim-h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 26px
}

.anim-h2 em {
  font-style: italic;
  color: var(--gold)
}

.anim-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px
}

.anim-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px
}

.anim-marker {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 110, 0.3);
  padding: 7px 14px
}

/* ── Citation ── */
.citation-band {
  background: var(--navy);
  padding: 72px 48px;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  border-bottom: 1px solid rgba(200, 169, 110, 0.1)
}

.citation-band blockquote {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--gold-light);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 20px
}

.citation-author {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.4)
}

/* ═══════════════════════════════════════
   COMPOSANTS — PAGE CALLIGRAPHIE-BASE
═══════════════════════════════════════ */

/* ── Grilles styles base ── */
.styles-base {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border-gold)
}

.styles-base.light {
  background: var(--cream)
}

.styles-base.dark {
  background: var(--navy);
  border-bottom-color: rgba(200, 169, 110, 0.12)
}

.styles-base-inner {
  max-width: 1320px;
  margin: 0 auto
}

.styles-base h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  margin-bottom: 48px
}

.styles-base.dark h2 {
  color: var(--cream)
}

.styles-base h2 em {
  font-style: italic;
  color: var(--gold)
}

.styles-grid {
  display: grid;
  gap: 20px
}

.styles-grid.cols-5 {
  grid-template-columns: repeat(3, 1fr)
}

.styles-grid.cols-7 {
  grid-template-columns: repeat(3, 1fr)
}

.style-item {
  display: block
}

.style-item-img {
  overflow: hidden;
  border: 1px solid var(--border-gold);
  cursor: zoom-in
}

.style-item-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s
}

.style-item-img:hover img {
  opacity: 0.88
}

.style-item-tag {
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold)
}

.style-item-name {
  margin-top: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text)
}

.styles-base.dark .style-item-name {
  color: var(--cream)
}

/* ── Onglets ── */
.tabs-section {
  background: var(--cream);
  padding: 80px 48px;
  border-bottom: 1px solid var(--border-gold)
}

.tabs-inner {
  max-width: 980px;
  margin: 0 auto
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 52px;
  gap: 0
}

/* Surcharge .tab-btn pour .tabs-section (évite conflit avec les onglets home) */
.tabs-section .tab-btn {
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap
}

.tabs-section .tab-btn.active {
  color: var(--navy)
}

/* Surcharge .tab-panel : block ici, grid sur la home */
.tabs-section .tab-panel {
  display: none
}

.tabs-section .tab-panel.active {
  display: block
}

.tab-panel h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 32px
}

.tab-panel h3 em {
  font-style: italic;
  color: var(--gold)
}

.tab-panel p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px
}

.tab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.tab-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  background: var(--cream-dark)
}

/* ═══════════════════════════════════════
   RESPONSIVE — PAGES INTÉRIEURES
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .page-intro {
    padding: 60px 28px
  }

  .edito-dark {
    padding: 60px 28px
  }

  .styles-base {
    padding: 60px 28px
  }

  .tabs-section {
    padding: 60px 28px
  }

  .img-slider {
    height: 380px
  }

  .tabs-section .tab-btn {
    padding: 12px 16px;
    font-size: 10px
  }

  .styles-grid-5,
  .styles-grid-7 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 600px) {
  .img-slider.hero {
    height: 47vh;
    min-height: 290px;
    margin-top: 72px
  }

  .islider-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
    bottom: 26px
  }

  .islider-btn.prev {
    right: 62px
  }

  .islider-btn.next {
    right: 20px
  }

  .islider-nav {
    bottom: 30px
  }

  .page-intro {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .tab-nav {
    flex-direction: column
  }

  .tabs-section .tab-btn {
    border-bottom: none;
    border-left: 2px solid transparent;
    margin: 0;
    padding: 12px 20px
  }

  .tabs-section .tab-btn.active {
    border-left-color: var(--gold);
    border-bottom-color: transparent
  }
}

@media (max-width: 560px) {

  .styles-grid-5,
  .styles-grid-7 {
    grid-template-columns: 1fr
  }

  .styles-grid.cols-5,
  .styles-grid.cols-7 {
    grid-template-columns: 1fr
  }
}

/* ═══ BANNIÈRE COOKIE CONSENT ═══ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s
}

#cookie-banner.cb-visible {
  opacity: 1;
  transform: translateY(0)
}

.cb-msg {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.75)
}

.cb-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

.cb-btn {
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s
}

.cb-btn-gold {
  background: var(--gold);
  color: var(--navy)
}

.cb-btn-gold:hover {
  background: var(--gold-light)
}

.cb-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.cb-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5)
}

@media (max-width: 640px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px
  }
}

/* ═══ SUGGESTION DE LANGUE ═══ */
#lang-hint {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  background: var(--navy);
  border-left: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s
}

#lang-hint.lh-visible {
  opacity: 1;
  transform: translateY(0)
}

.lang-hint-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none
}

.lang-hint-link:hover {
  color: var(--gold-light)
}

.lang-hint-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s
}

.lang-hint-close:hover {
  color: #fff
}

/* ── Studio de Création — label de section ── */
.sdc-label {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
}

/* ── Studio de Création — section prestations ── */
.sdc-prestations {
  background: var(--cream);
  padding: 88px 48px;
  border-top: 1px solid var(--border-gold);
}

.sdc-prestations-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sdc-prestations-inner>p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 20px;
  text-align: center;
}

.sdc-prestations-inner>p em {
  font-style: italic;
  color: var(--navy-mid);
}

.sdc-prestations-inner .btn-gold {
  display: block;
  width: fit-content;
  margin: 36px auto 0;
}

.sdc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.sdc-card {
  background: var(--white);
  overflow: hidden;
}

.sdc-card-img {
  height: 180px;
  overflow: hidden;
}

.sdc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sdc-card:hover .sdc-card-img img {
  transform: scale(1.04);
}

.sdc-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.sdc-card-title {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.sdc-card-body p {
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--text);
  opacity: .8;
  margin: 0;
}

@media (max-width: 900px) {
  .sdc-prestations {
    padding: 60px 28px;
  }

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

@media (max-width: 560px) {
  .sdc-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Page Brochures ── */
.brochures-section {
  background: var(--navy);
  padding: 80px 48px 100px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brochures-inner {
  max-width: 860px;
  width: 100%;
}

.brochure-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--border-gold);
}

.brochure-cover img {
  width: 100%;
  display: block;
  box-shadow: 0 8px 32px rgba(22, 10, 3, 0.14);
}

.brochure-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.brochure-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.1;
}

.brochure-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.brochure-downloads { display: flex; flex-direction: column; gap: 10px; }

.brochure-dl {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border: 1px solid var(--border-gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s;
}

.brochure-dl:hover { background: var(--gold-pale); border-color: var(--gold); }

.brochure-dl-lang {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  min-width: 26px;
}

.brochure-dl-icon { margin-left: auto; color: var(--gold); font-size: 15px; }

@media (max-width: 680px) {
  .brochures-section { padding: 60px 24px; }
  .brochure-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .brochure-cover { max-width: 200px; }
}

/* ── Slider pages intérieures — texte en surimpression ── */
.islide-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 64px;
  pointer-events: none;
}

/*.islide-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12, 20, 30, 0.70) 0%, rgba(12, 20, 30, 0.28) 55%, transparent 80%),
    linear-gradient(to top, rgba(12, 20, 30, 0.72) 0%, transparent 58%);
  z-index: -1;
}*/

.islide-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 12px;
}

.islide-title em {
  font-style: normal;
  color: var(--gold);
}

.islide-desc {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: rgba(250, 248, 243, 0.65);
  max-width: 480px;
  line-height: 1.82;
  margin: 0;
}

@media (max-width: 768px) {
  .islide-content {
    padding: 0 28px 44px;
  }
}

@media (max-width: 500px) {
  .islide-title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .islide-desc {
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════
   NAV COMPACTE — 1075px → 950px
═══════════════════════════════════════ */
@media (max-width: 1075px) {
  .nav-top-inner {
    height: 96px;
    padding: 0 32px;
  }

  .nav-logo-img {
    height: 64px;
  }

  .nav-left {
    min-width: 140px;
  }

  .nav-bar-inner {
    padding: 0 32px;
  }

  .nav-item a {
    padding: 0 12px;
  }

  .nav-cta {
    padding: 10px 18px;
  }
}

/* ═══════════════════════════════════════
   NAV HAMBURGER — caché sur desktop
═══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE — NAV HAMBURGER (≤ 985px)
═══════════════════════════════════════ */
@media (max-width: 985px) {

  /* ── Pages intérieures — hero slider ── */
  .img-slider.hero { margin-top: 72px; }

  /* ── Homepage hero ── */
  .hero { margin-top: 72px; height: calc(100vh - 72px); }

  /* ── Nav top ── */
  .nav-top-inner {
    height: 72px;
    padding: 0 20px;
  }

  .nav-logo-img {
    height: 50px;
  }

  .nav-left {
    min-width: auto;
    order: 3;
    justify-content: flex-end;
  }

  .nav-right {
    order: -1;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  #main-nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #main-nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  #main-nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Nav bar → panel vertical ── */
  .nav-bar {
    display: none;
    width: 80%;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(15, 24, 35, 0.12);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  #main-nav.nav-open .nav-bar {
    display: block;
  }

  .nav-bar-inner {
    flex-direction: column;
    padding: 0;
    align-items: stretch;
  }

  .nav-item-home { display: block; }

  .nav-spacer {
    display: none;
  }

  .nav-item a {
    height: auto;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    font-size: 11px;
  }

  .nav-item a:hover,
  .nav-item a.active {
    border-bottom-color: rgba(200, 169, 110, 0.12);
  }

  /* Dropdown — toujours déplié inline sur mobile */
  .nav-item.nav-secondary .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    background: rgba(250, 247, 242, 0.7);
    min-width: 0;
  }

  .nav-dropdown a {
    padding: 10px 36px;
    font-size: 10px;
  }

  .nav-dropdown-sep {
    height: 1px;
    background: rgba(200, 169, 110, 0.12);
    margin: 2px 0;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — HOME SECTIONS (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero ── */
  .hero {
    height: calc(100vh - 132px);
    min-height: 380px;
  }

  .slide-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
    padding-top: 64px;
  }

  .slide h1,
  .slide .slide-h1 {
    font-size: clamp(26px, 6.5vw, 36px);
  }

  .slide-sub {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-arrows {
    right: 20px;
    bottom: 26px;
  }

  .arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .hero-controls {
    bottom: 30px;
  }

  /* ── Trust ── */
  .trust {
    padding: 18px 20px;
  }

  .trust-sep,
  .trust-label {
    display: none;
  }

  /* ── Stats ── */
  .stats-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat {
    padding: 10px 12px;
  }

  .stat:last-child {
    grid-column: span 1;
  }

  .stat-num {
    font-size: 36px;
  }

  /* ── Expertises ── */
  .expertises {
    padding: 60px 20px;
  }

  .expertises-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .expertises-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-card {
    height: 300px;
  }

  /* Neutralise :hover sur touch — flip piloté par JS (.flipped) */
  .exp-card:hover .exp-card-inner { transform: none; }
  .exp-card:hover .exp-face-img { transform: none; filter: none; }
  .exp-card:hover .exp-face { pointer-events: auto; }

  .exp-card.flipped .exp-card-inner { transform: rotateY(180deg); }
  .exp-card.flipped .exp-face { pointer-events: none; }

  /* ── Réalisations ── */
  .realisations {
    padding: 60px 20px;
  }

  .real-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .real-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }

  .tile-big {
    grid-row: span 1;
  }

  /* ── Notre Maison ── */
  .maison {
    padding: 60px 20px;
  }

  .maison::before {
    display: none;
  }

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

  .maison-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .m-ivan-photo {
    grid-column: span 2;
    aspect-ratio: 3/2;
  }

  .m-row-3 {
    display: contents;
  }

  /* ── Identité ── */
  .identite {
    padding: 60px 20px;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: unset;
  }

  .tab-btn {
    white-space: normal;
    text-align: center;
    padding: 12px 10px;
    font-size: 9px;
  }

  .tab-btn:nth-child(1),
  .tab-btn:nth-child(2) {
    border-bottom: 1px solid var(--border-gold);
  }

  .tab-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tab-h3 {
    font-size: 26px;
  }

  /* ── Footer ── */
  footer {
    padding: 40px 20px 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    padding: 4px 0;
  }

  .footer-links li {
    flex: 1 1 33%;
    text-align: center;
    padding: 10px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

/* ══════════════════════════════════════════
   ATELIER DE PERSONNALISATION — CHAPITRES
══════════════════════════════════════════ */

.adp-chapter {
  background: var(--cream);
  padding: 80px 48px;
  border-top: 1px solid var(--border-gold);
}

.adp-chapter-dark {
  background: var(--navy);
  padding: 80px 48px;
  border-top: 1px solid rgba(200, 169, 110, 0.18);
  position: relative;
  overflow: hidden;
}

.adp-chapter-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.adp-chapter-num {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  display: block;
  margin-bottom: 0.6rem;
}

.adp-chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.adp-chapter-dark .adp-chapter-title {
  color: var(--cream);
}

.adp-chapter-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 0;
}

.adp-chapter-dark .adp-chapter-desc {
  color: rgba(250, 248, 243, 0.6);
}

.adp-photos {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 2.5rem;
}

.adp-photo-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.adp-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.adp-photo-wrap:hover img {
  transform: scale(1.04);
}

.adp-photos--1 .adp-photo-wrap {
  width: 100%;
  max-width: 860px;
  height: 460px;
}

.adp-photos--2 .adp-photo-wrap {
  width: calc(50% - 9px);
  height: 360px;
}

.adp-photos--3 .adp-photo-wrap {
  width: calc(33.33% - 12px);
  height: 300px;
}

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

.adp-photos--4 .adp-photo-wrap {
  width: auto;
  height: 240px;
}

@media (max-width: 900px) {
  .adp-chapter,
  .adp-chapter-dark {
    padding: 56px 28px;
  }

  .adp-photos--3 {
    flex-wrap: wrap;
  }

  .adp-photos--3 .adp-photo-wrap {
    width: calc(50% - 9px);
    height: 220px;
  }

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

@media (max-width: 600px) {
  .adp-chapter,
  .adp-chapter-dark {
    padding: 48px 20px;
  }

  .adp-photos {
    flex-direction: column;
  }

  .adp-photos--1 .adp-photo-wrap,
  .adp-photos--2 .adp-photo-wrap,
  .adp-photos--3 .adp-photo-wrap {
    width: 100%;
    height: 220px;
  }

  .adp-photos--4 {
    grid-template-columns: 1fr 1fr;
  }

  .adp-photos--4 .adp-photo-wrap {
    height: 180px;
  }
}