@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #F8F4DF;
  --cream-dark: #ede8c4;
  --brown: #613326;
  --brown-dark: #3d1f17;
  --brown-mid: #7d4438;
  --brown-light: #c4886f;
  --text-dark: #3d1f17;   /* = brown-dark, jamais de noir */
  --text-muted: #7a5f56;  /* brun chaud moyen */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar.scrolled {
  background: rgba(248,244,223,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.2rem 3rem;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: white;
  transition: color 0.4s ease;
  text-transform: uppercase;
}

#navbar.scrolled .nav-logo {
  color: var(--brown);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s ease;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

#navbar.scrolled .nav-links a {
  color: var(--text-muted);
}

#navbar.scrolled .nav-links a::after {
  background: var(--brown);
}

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
  color: var(--brown);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: transform 0.32s ease, opacity 0.2s ease, background 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#navbar.scrolled .hamburger span {
  background: var(--brown);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(35,15,10,0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
}

.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(248,244,223,0.85);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--cream);
  transform: translateX(6px);
}


/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--brown-dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.1) 0%,
    rgba(61,31,23,0.4) 55%,
    rgba(26,14,11,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 1100px;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeIn 1.2s 0.4s forwards;
}

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

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 700;
  color: white;
  line-height: 1.03;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-style: normal;
  color: var(--brown-light);
}

.hero-title-sub {
  display: inline-block;
  font-size: 0.62em;
  font-weight: 600;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3rem;
}

.hero-sub span { margin: 0 0.6rem; opacity: 0.35; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.scroll-indicator p {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollPulse 2.2s 1.8s infinite;
}

@keyframes scrollPulse { to { top: 200%; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-light {
  background: white;
  color: var(--brown);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.btn-brown {
  background: var(--brown);
  color: var(--cream);
}

.btn-brown:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(97,51,38,0.3);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(248,244,223,0.5);
}

.btn-outline-cream:hover {
  background: rgba(248,244,223,0.1);
  border-color: var(--cream);
}

.btn-outline-brown {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}

.btn-outline-brown:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ===== SECTIONS ===== */
section { padding: 7rem 3rem; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 520px;
}

.section-body.light { color: rgba(248,244,223,0.65); }

/* ===== SERVICES ===== */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 3rem 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brown);
  transition: width 0.4s ease;
}

.service-card:hover::after { width: 100%; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(97,51,38,0.1);
}

.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ===== ABOUT TEASER ===== */
.about-teaser { background: var(--brown); padding: 7rem 3rem; }

.about-teaser-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}

.about-teaser-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-teaser-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-teaser-text { color: var(--cream); }

.about-teaser-text blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--cream);
  margin: 2rem 0 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--brown-light);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 9rem 3rem 2.5rem;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(97,51,38,0.4) 0%, transparent 65%);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(97,51,38,0.08);
}

.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  color: var(--brown);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ===== LOGOS ===== */
.logos-section {
  background: var(--brown-dark);
  padding: 5rem 3rem;
}

.logos-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(248,244,223,0.3);
  margin-bottom: 3rem;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.logo-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(248,244,223,0.2);
  text-transform: uppercase;
  transition: color 0.3s ease;
  user-select: none;
  text-decoration: none;
}

.logo-item:hover { color: rgba(248,244,223,0.65); text-decoration: none; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--cream); padding: 5rem 3rem 7rem; }

.gallery-grid {
  columns: 3;
  column-gap: 3px;
  margin-top: 3rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.85);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(97,51,38,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}

.gallery-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ===== VIDÉO RÉELLE (inline) ===== */
.video-card-real {
  cursor: pointer;
}

.video-card-real video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-card-real.playing video {
  opacity: 1;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.1);
  transition: opacity 0.3s ease;
}

.video-card-real.playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-card-real:hover .video-play-overlay {
  opacity: 1 !important;
}

/* ===== FILTER BUTTONS ===== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(97,51,38,0.2);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--brown); padding: 7rem 3rem; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.video-card {
  aspect-ratio: 16/9;
  background: var(--brown-dark);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: all 0.4s ease;
}

.video-card:hover img {
  opacity: 0.45;
  transform: scale(1.05);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(248,244,223,0.15);
  border: 1.5px solid rgba(248,244,223,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.video-card:hover .play-btn {
  background: rgba(248,244,223,0.25);
  transform: scale(1.1);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid rgba(248,244,223,0.9);
  margin-left: 4px;
}

.video-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== ABOUT PAGE ===== */
.about-intro-section {
  background: var(--brown-dark);
  padding: 14rem 3rem 0;
  overflow: hidden;
  position: relative;
}

.about-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  align-items: end;
}

.about-text-col { padding-bottom: 7rem; }

.about-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.about-bio {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(248,244,223,0.65);
  margin-bottom: 2.5rem;
}

.about-portrait-col {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.about-portrait-col img {
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-top: 4rem;
}

.value-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.value-item p {
  font-size: 0.87rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ===== CLIENTS SECTION (Portfolio) ===== */
.clients-section {
  background: var(--cream);
  padding-bottom: 7rem;
}

.clients-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 3rem 3rem;
}

.client-block {
  margin-bottom: 6rem;
}

.client-block-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 1.5rem;
}

.project-type {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.client-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.client-location {
  font-weight: 400;
  font-size: 0.6em;
  color: var(--brown-light);
  letter-spacing: 0;
}

.client-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* Vidéos portrait 9:16 — côte à côte, même espacement que la mosaïque photos */
.client-videos-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  background: transparent;
  padding: 0;
  max-width: 1180px;
  margin: 0 auto;
}

/* Lien sur les noms de clients */
.client-title a {
  color: inherit;
  text-decoration: none;
}

.client-videos-row .video-card {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 9 / 16;
}

.yt-card iframe,
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-facade {
  cursor: pointer;
}

.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout Machete : 2 colonnes photos + vidéo en colonne 3 */
.machete-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.machete-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.machete-grid img:hover {
  filter: saturate(1.05) brightness(0.78);
  transform: scale(1.04);
}

.machete-grid img:nth-child(1) { grid-column: 1; grid-row: 1; }
.machete-grid img:nth-child(2) { grid-column: 2; grid-row: 1; }
.machete-grid img:nth-child(3) { grid-column: 1; grid-row: 2; }
.machete-grid img:nth-child(4) { grid-column: 2; grid-row: 2; }

.machete-video {
  grid-column: 3;
  grid-row: 1 / span 2;
  position: relative;
  overflow: hidden;
  background: var(--brown-dark);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  width: 100%;
  height: auto;
  align-self: center;
}

/* Photos en mosaïque 3 colonnes */
.client-photos-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--cream);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}

.client-photos-mosaic img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.client-photos-mosaic img:hover {
  filter: saturate(1.05) brightness(0.78);
  transform: scale(1.04);
}

/* Vidéos sur mobile : 2 par ligne, puis 1 sur très petit écran */
@media (max-width: 960px) {
  .client-videos-row { flex-wrap: wrap; padding: 0; }
  .client-videos-row .video-card {
    flex: 0 0 calc(50% - 1px);
    aspect-ratio: 9 / 16;
  }
  .client-photos-mosaic { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .machete-grid { padding: 0; }
  .client-block-header { padding: 0 1.5rem 1.5rem; }
  .clients-intro { padding: 5rem 1.5rem 3rem; }
}

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-info p, .contact-info a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.contact-info a:hover { color: var(--brown); }

.contact-info-block { margin-bottom: 2.5rem; }

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--brown);
  border: 1.5px solid rgba(97,51,38,0.25);
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: white;
  padding: 3rem;
}

.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid transparent;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23613326' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--brown);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--cream);
  padding: 8rem 3rem;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ===== CLIENTS + STATS (home) ===== */
.clients-proof-section {
  background: var(--cream);
  padding: 7rem 3rem;
}

.proof-clients-names {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3.5rem;
  margin: 3rem 0 5rem;
}

.proof-clients-names span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 31, 23, 0.3);
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.proof-stat-slot {
  aspect-ratio: 9 / 16;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-stat-slot p {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(61,31,23,0.2);
}

.proof-stat-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .proof-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 14, 11, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
  transition: opacity 0.2s ease;
}
.lightbox-img.fading { opacity: 0; }

.lightbox-caption {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,244,223,0.4);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: rgba(248,244,223,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 9001;
}
.lightbox-close:hover { color: var(--cream); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(248,244,223,0.35);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem 1.5rem;
  transition: color 0.2s;
  z-index: 9001;
}
.lightbox-nav:hover { color: var(--cream); }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

.lightbox-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swipe-line {
  width: 60px;
  height: 1px;
  background: rgba(248,244,223,0.12);
  position: relative;
  overflow: hidden;
}
.swipe-cursor {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(248,244,223,0.55);
  animation: swipe-move 1.8s ease-in-out infinite;
}
@keyframes swipe-move {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--brown-dark);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(248,244,223,0.35);
  text-transform: uppercase;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  text-decoration: none;
  line-height: 0;
  display: inline-block;
  color: transparent;
  font-size: 0;
}

.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-logo:hover img { opacity: 1; }

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,244,223,0.3);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: rgba(248,244,223,0.7); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(248,244,223,0.2);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-delay-1 { transition-delay: 0.12s; }
.fade-delay-2 { transition-delay: 0.24s; }
.fade-delay-3 { transition-delay: 0.36s; }

/* ===== DIVIDER ===== */
.divider {
  width: 40px;
  height: 2px;
  background: var(--brown-light);
  margin: 1.5rem 0;
}

.divider.light { background: rgba(248,244,223,0.3); }

/* ===== RESPONSIVE TABLETTE (≤ 960px) ===== */
@media (max-width: 960px) {
  section { padding: 5rem 1.5rem; }

  /* Navigation */
  #navbar { padding: 1.5rem; }
  #navbar.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-bg { background-attachment: scroll; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-sub { font-size: 0.65rem; letter-spacing: 0.2em; }

  /* Grilles */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { columns: 2; column-gap: 0.5rem; }

  /* About teaser */
  .about-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-teaser-img { aspect-ratio: 4/3; }

  /* About page */
  .about-intro-inner { grid-template-columns: 1fr; }
  .about-portrait-col { display: none; }
  .about-text-col { padding-bottom: 5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  footer { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .footer-brand { display: none; }
  .footer-center { width: 100%; }
  .footer-nav { justify-content: center; flex-wrap: nowrap; gap: 0.6rem; font-size: 0.65rem; }

  /* Page headers */
  .page-header { padding: 10rem 1.5rem 3.5rem; }
  .page-header h1 { font-size: clamp(2.5rem, 7vw, 4rem); }
}

/* ===== RESPONSIVE MOBILE (≤ 600px) ===== */
@media (max-width: 600px) {
  section { padding: 4rem 1.2rem; }

  /* Hero */
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { display: none; } /* trop chargé sur petit écran */
  .scroll-indicator { display: none; }

  /* Grilles */
  .gallery-grid { columns: 1; }
  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .client-photos-mosaic { grid-template-columns: repeat(2, 1fr); }

  /* Formulaire */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  /* Typographie */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .client-title { font-size: 1.6rem; }
  .hero-eyebrow { font-size: 0.6rem; }

  /* Page header */
  .page-header { padding: 9rem 1.2rem 3rem; }

  /* Logos clients */
  .logos-grid { gap: 1.5rem 2.5rem; }
  .logo-item { font-size: 0.85rem; }

  /* Boutons */
  .btn { padding: 0.9rem 1.8rem; font-size: 0.7rem; }
}

/* ===== PREVIEW TRAVAUX (carrousel homepage) ===== */
.preview-section {
  background: var(--brown-dark);
  padding: 4rem 0 0;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 3rem 2.5rem;
}

.preview-track-wrapper {
  position: relative;
}

.preview-track {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 3rem;
}
.preview-track::-webkit-scrollbar { display: none; }

.preview-card {
  --card-h: 520px;
  height: var(--card-h);
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  background: var(--brown);
}

.preview-card.is-video {
  width: calc(var(--card-h) * 9 / 16);
  cursor: pointer;
}

.preview-card.is-photo {
  width: calc(var(--card-h) * 3 / 4);
  cursor: pointer;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.preview-card:hover img {
  transform: scale(1.04);
  opacity: 0.8;
}

.preview-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.preview-card:hover .play-btn {
  background: rgba(248,244,223,0.25);
  transform: scale(1.1);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(61,31,23,0.75);
  border: 1px solid rgba(248,244,223,0.25);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(61,31,23,0.98);
}

.carousel-prev { left: 0.75rem; }
.carousel-next { right: 0.75rem; }

@media (max-width: 768px) {
  .preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 1.5rem 2rem;
  }
  .preview-track { padding: 0 1.5rem; }
  .preview-card { --card-h: 290px; }
  .carousel-arrow { display: none; }
}

/* ===== VIDEO MODAL BUNNY ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: all;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 31, 23, 0.95);
}
.video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(92vw, 680px);
  aspect-ratio: 9/16;
  max-height: 88vh;
}
.video-modal-inner.landscape {
  width: min(92vw, 1080px);
  aspect-ratio: 16/9;
}
.video-modal-inner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0;
}
.video-modal-close:hover { opacity: 1; }

/* Preview card background video */
.preview-card .preview-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix : la vidéo de fond ne doit pas capturer les clics */
.preview-card .preview-bg-video {
  pointer-events: none;
}

/* ===== REFONTE LECTEUR VIDÉO ===== */

/* Miniatures : plus de grisé */
.video-card img {
  opacity: 1 !important;
  transition: transform 0.4s ease !important;
}
.video-card:hover img {
  opacity: 1 !important;
  transform: scale(1.04) !important;
}

/* Overlay : transparent, juste le play */
.video-play-overlay {
  background: transparent !important;
}

/* Bouton play : fin et élégant */
.play-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: 1px solid rgba(248,244,223,0.5) !important;
  backdrop-filter: none !important;
  transition: all 0.25s ease !important;
}
.play-btn::after {
  border-top: 7px solid transparent !important;
  border-bottom: 7px solid transparent !important;
  border-left: 12px solid rgba(248,244,223,0.7) !important;
  margin-left: 3px !important;
}
.video-card:hover .play-btn,
.preview-card:hover .play-btn {
  background: rgba(248,244,223,0.12) !important;
  border-color: rgba(248,244,223,0.9) !important;
  transform: scale(1.08) !important;
}
.video-card:hover .play-btn::after,
.preview-card:hover .play-btn::after {
  border-left-color: rgba(248,244,223,1) !important;
}

/* Modal : sans bandes noires */
.video-modal-inner {
  width: auto !important;
  aspect-ratio: unset !important;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-inner video {
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  max-width: min(92vw, 520px);
  max-height: 90vh;
  display: block;
}
.video-modal-inner.landscape video {
  max-width: min(92vw, 1080px);
  max-height: 85vh;
}

/* Pas de bouton play sur les vidéos autoplay du carousel */
.preview-autoplay .video-play-overlay {
  display: none;
}

/* ===== NAVIGATION MODAL VIDÉO ===== */
.video-modal-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.video-modal-player-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-nav {
  background: none;
  border: 1px solid rgba(248,244,223,0.3);
  color: rgba(248,244,223,0.7);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-nav:hover {
  border-color: rgba(248,244,223,0.9);
  color: var(--cream);
  background: rgba(248,244,223,0.08);
}

/* Animation play/pause */
.vcp-flash-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes vcpPop {
  0%   { opacity: 0.9; transform: scale(0.6); }
  40%  { opacity: 1;   transform: scale(1.15); }
  100% { opacity: 0;   transform: scale(1.4); }
}

.vcp-flash {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(248,244,223,0.15);
  border: 1.5px solid rgba(248,244,223,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(248,244,223,0.9);
  animation: vcpPop 0.65s ease-out forwards;
}

@media (max-width: 600px) {
  .video-modal-nav { width: 36px; height: 36px; font-size: 1rem; }
  .video-modal-inner { gap: 0.75rem; }
}

/* ===== MODAL VIDÉO MOBILE ===== */
@media (max-width: 600px) {
  .video-modal-inner {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    padding: 0 0.5rem;
  }
  .video-modal-inner video {
    max-width: 100% !important;
    max-height: 70vh !important;
  }
  .video-modal-close {
    top: 0.5rem !important;
    right: 0.75rem !important;
  }
  .video-modal-player-wrap {
    width: 100%;
  }
  .video-modal-nav {
    width: 44px !important;
    height: 44px !important;
  }
}

/* Croix fermeture modale vidéo — toujours visible */
#bunny-video-modal .video-modal-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61,31,23,0.8);
  border: 1px solid rgba(248,244,223,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 1;
  z-index: 10000;
  padding: 0;
}
#bunny-video-modal .video-modal-close:hover {
  background: rgba(61,31,23,1);
  border-color: rgba(248,244,223,0.7);
}

/* Photo portrait visible sur mobile, sous le texte */
@media (max-width: 768px) {
  .about-intro-inner {
    display: flex;
    flex-direction: column;
  }
  .about-portrait-col {
    display: block !important;
    order: 2;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 3rem;
    aspect-ratio: 3/4;
  }
  .about-portrait-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-text-col {
    order: 1;
    padding-bottom: 2rem;
  }
}

/* Menu design grid — images affichées en entier sans crop */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}
.menu-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: saturate(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.menu-grid img:hover {
  filter: saturate(1.05) brightness(0.78);
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* Machete planche unique — image affichée en entier, pleine largeur */
.machete-grid--single {
  display: block;
}
.machete-grid--single img {
  aspect-ratio: unset !important;
  object-fit: contain !important;
  height: auto;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: block;
}

/* KBANE05 — carte vidéo pleine largeur en mode paysage */
.kbane-wide-row {
  max-width: 1180px;
  margin: 3px auto 0;
}
.kbane-wide-card {
  aspect-ratio: 16 / 9 !important;
  width: 100%;
}
.kbane-wide-card img {
  object-fit: contain !important;
  background: var(--brown-dark);
}

/* Kbane photos — grille 2 colonnes, ratio cohérent */
.kbane-photos-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 1180px;
  margin: 3px auto 0;
}
.kbane-photos-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: filter 0.3s ease;
}
.kbane-photos-row img:hover { filter: saturate(1.05) brightness(0.78); transform: scale(1.04); }
.kbane-pano {
  grid-column: 1 / -1;
  aspect-ratio: unset !important;
  height: auto !important;
  object-fit: cover;
}
@media (max-width: 600px) {
  .kbane-photos-row { grid-template-columns: 1fr; }
}
