/* ===========================================================
   VINCENT BRUNOT — THÈME WORDPRESS
   Design System · Version 2.0
   =========================================================== */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  /* Couleurs */
  --ink:       #1B2D5B;       /* Bleu encre profond */
  --ink-light: #2D4480;
  --paper:     #F8F4EF;       /* Crème papier */
  --paper-dark:#EDE7DC;
  --ochre:     #C4863A;       /* Ocre / or aquarelle */
  --ochre-dark:#A36A28;
  --rust:      #8B3A3A;       /* Rouge brique */
  --charcoal:  #2C2C2C;
  --gray:      #6B7280;
  --gray-light:#D1CFC9;
  --white:     #FFFFFF;

  /* Typographie */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Raleway', system-ui, -apple-system, sans-serif;
  --font-deco:  'Cormorant Garamond', 'Palatino Linotype', serif;

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* Bordures */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(27,45,91,0.10);
  --shadow-md:  0 8px 30px rgba(27,45,91,0.14);
  --shadow-lg:  0 20px 60px rgba(27,45,91,0.20);
  --shadow-ink: 0 4px 20px rgba(27,45,91,0.25);

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:       0.35s;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 64px;
}

/* ─── UTILITIES ─────────────────────────────────────────── */
.vb-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.vb-section {
  padding: var(--space-xl) 0;
}

/* ─── CURSOR CUSTOM ─────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }

  .vb-cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
  }

  .vb-cursor__dot {
    width: 12px; height: 12px;
    background: var(--ochre);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  }

  .vb-cursor--hover .vb-cursor__dot {
    width: 36px; height: 36px;
    background: rgba(196,134,58,0.25);
    border: 1.5px solid var(--ochre);
  }
}

/* ─── LOADER ─────────────────────────────────────────────── */
.vb-loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.vb-loader.vb-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.vb-loader__inner { text-align: center; }
.vb-loader__pen {
  width: 180px;
  margin: 0 auto var(--space-sm);
}
.vb-loader__hand-svg {
  display: block;
  animation: handDraw 1.6s ease-in-out infinite;
  transform-origin: center bottom;
  filter: drop-shadow(0 4px 16px rgba(196,134,58,0.25));
}
@keyframes handDraw {
  0%   { transform: translateX(-8px) rotate(-4deg); }
  50%  { transform: translateX(8px)  rotate(4deg); }
  100% { transform: translateX(-8px) rotate(-4deg); }
}
.vb-loader__trace {
  stroke-dasharray: 104;
  stroke-dashoffset: 104;
  animation: traceLine 1.6s ease-in-out infinite;
}
@keyframes traceLine {
  0%   { stroke-dashoffset: 104; opacity: 0.3; }
  40%  { stroke-dashoffset: 0;   opacity: 1; }
  70%  { stroke-dashoffset: 0;   opacity: 1; }
  100% { stroke-dashoffset: -104; opacity: 0.3; }
}
.vb-loader__dot1 {
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0; r: 1; }
  40%       { opacity: 1; r: 2.5; }
  70%       { opacity: 0.5; }
}
.vb-loader__text {
  display: flex;
  gap: 0;
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  letter-spacing: 0.05em;
}
.vb-loader__text span {
  opacity: 0;
  animation: letterIn 0.4s var(--ease) forwards;
}
.vb-loader__text .gap { margin-left: 0.5em; }
.vb-loader__text span:nth-child(1)  { animation-delay: 0.05s; }
.vb-loader__text span:nth-child(2)  { animation-delay: 0.10s; }
.vb-loader__text span:nth-child(3)  { animation-delay: 0.15s; }
.vb-loader__text span:nth-child(4)  { animation-delay: 0.20s; }
.vb-loader__text span:nth-child(5)  { animation-delay: 0.25s; }
.vb-loader__text span:nth-child(6)  { animation-delay: 0.30s; }
.vb-loader__text span:nth-child(7)  { animation-delay: 0.35s; }
.vb-loader__text span:nth-child(8)  { animation-delay: 0.50s; }
.vb-loader__text span:nth-child(9)  { animation-delay: 0.55s; }
.vb-loader__text span:nth-child(10) { animation-delay: 0.60s; }
.vb-loader__text span:nth-child(11) { animation-delay: 0.65s; }
.vb-loader__text span:nth-child(12) { animation-delay: 0.70s; }
.vb-loader__text span:nth-child(13) { animation-delay: 0.75s; }
@keyframes letterIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HEADER ─────────────────────────────────────────────── */
.vb-header {
  position: relative;
  z-index: 100;
}

/* Top bar */
.vb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--paper);
}
.vb-topbar__languages {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.vb-lang {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease);
  border-radius: 2px;
}
.vb-lang--active, .vb-lang:hover { opacity: 1; }
/* Drapeaux emoji : langue sélecteur */
.vb-lang__flag {
  font-size: 1.1rem;
  line-height: 1;
  display: block;
}
.vb-lang--inactive {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.vb-lang--inactive:hover {
  opacity: 0.4;
}
.vb-topbar__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vb-topbar__social a {
  color: rgba(248,244,239,0.7);
  display: flex;
  align-items: center;
  transition: color var(--dur) var(--ease);
}
.vb-topbar__social a:hover { color: var(--ochre); }

/* Hero Banner */
.vb-hero-banner {
  position: relative;
  height: clamp(140px, 18vw, 240px);
  overflow: hidden;
}
.vb-hero-banner__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 8s ease-out;
}
.vb-header:hover .vb-hero-banner__img { transform: scale(1.03); }

.vb-hero-banner__img--default {
  background: linear-gradient(135deg, #1B2D5B 0%, #2D4480 40%, #1B2D5B 70%, #0F1A38 100%);
}
.vb-hero-banner__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vb-hero-banner__placeholder-text {
  position: relative;
  z-index: 2;
  color: rgba(248,244,239,0.95); text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.vb-hero-banner__sketch-lines { position: absolute; inset: 0; }
.sketch-line {
  position: absolute;
  height: 1px;
  left: 0;
  background: rgba(196,134,58,0.2);
  width: var(--width);
  top: var(--top);
  animation: sketchReveal 2s var(--ease) var(--delay) forwards;
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes sketchReveal {
  to { transform: scaleX(1); }
}
.vb-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  pointer-events: none;
}
.vb-hero-banner__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.vb-hero-banner__name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
}
.vb-hero-banner__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(248,244,239,0.85);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Navigation */
.vb-nav {
  background: var(--white);
  border-bottom: 1px solid var(--paper-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.vb-nav.vb-nav--scrolled {
  box-shadow: 0 4px 20px rgba(27,45,91,0.15);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}
.vb-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}
.vb-nav__logo {
  display: none;
  flex-direction: column;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.vb-nav.vb-nav--scrolled .vb-nav__logo {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.vb-nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.vb-nav__logo-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.vb-nav__menu { display: flex; }
.vb-nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.vb-nav-list > li {
  position: relative;
}
.vb-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.vb-nav-list > li > a:hover,
.vb-nav-list > li.current-menu-item > a,
.vb-nav-list > li.current-page-ancestor > a {
  color: var(--ink);
  background: rgba(27,45,91,0.06);
}
.vb-nav-list > li.current-menu-item > a {
  color: var(--ochre);
  background: rgba(196,134,58,0.08);
}

/* Submenu arrow */
.submenu-arrow {
  font-size: 0.6rem;
  transition: transform var(--dur) var(--ease);
  opacity: 0.5;
}
.has-children:hover .submenu-arrow { transform: rotate(-180deg); }

/* Dropdown */
.vb-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 300;
  list-style: none;
}
.has-children:hover .vb-submenu,
.has-children:focus-within .vb-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vb-submenu li { position: relative; }
.vb-submenu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background var(--dur), color var(--dur);
}
.vb-submenu li a:hover {
  background: rgba(196,134,58,0.08);
  color: var(--ochre);
  padding-left: 1.4rem;
}
/* Nested submenu */
.vb-submenu .vb-submenu {
  top: -0.5rem;
  left: calc(100% + 4px);
}

/* Burger (mobile) */
.vb-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.vb-nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.vb-nav__burger.vb-nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vb-nav__burger.vb-nav__burger--open span:nth-child(2) { opacity: 0; }
.vb-nav__burger.vb-nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MAIN ───────────────────────────────────────────────── */
.vb-main { background: var(--paper); }

/* ─── PAGE HEADER ────────────────────────────────────────── */
.vb-page-header {
  background: var(--ink);
  padding: 5rem clamp(1rem, 4vw, 3rem) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vb-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,134,58,0.15) 0%, transparent 70%);
}
.vb-page-header .vb-container { position: relative; z-index: 1; }
.vb-page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.vb-page-header__desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(248,244,239,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ─── SECTION LABELS & HEADERS ───────────────────────────── */
.vb-section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  border-bottom: 2px solid var(--ochre);
  padding-bottom: 0.2rem;
  margin-bottom: 1rem;
}
.vb-section-label--light { color: rgba(196,134,58,0.8); border-color: rgba(196,134,58,0.6); }

.vb-section-header { text-align: center; margin-bottom: 4rem; }
.vb-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.vb-section-title--light { color: var(--white); }
.vb-section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}
.vb-section-subtitle--light { color: rgba(248,244,239,0.75); }
.vb-section-cta { text-align: center; margin-top: 3.5rem; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.vb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.vb-btn--primary {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}
.vb-btn--primary:hover {
  background: var(--ochre-dark);
  border-color: var(--ochre-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,134,58,0.4);
}
.vb-btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.vb-btn--secondary:hover {
  background: var(--ink);
  color: var(--white);
}
.vb-btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.vb-btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.vb-btn--sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }
.vb-btn--large { padding: 1.1rem 2.5rem; font-size: 0.9rem; }

/* ─── ORNAMENT ───────────────────────────────────────────── */
.vb-ornament-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--ochre), transparent);
  margin: 1.5rem 0;
}

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.vb-section--about {
  padding: var(--space-xl) 0 calc(var(--space-xl) * 0.8);
  background: var(--paper);
}
.vb-about {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  align-items: center;
}

/* Portrait slider */
.vb-portrait-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper-dark);
  aspect-ratio: 4/5;
}
.vb-portrait-slider__figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.vb-portrait-slider__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vb-portrait-slider__figure--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--paper-dark), #DDD6CB);
}
.vb-placeholder-img {
  width: 70%;
  max-width: 240px;
}
.vb-placeholder-sketch { opacity: 0.5; }

/* Swiper customisation */
.swiper-button-prev,
.swiper-button-next {
  color: var(--white) !important;
  background: rgba(27,45,91,0.6);
  width: 38px !important; height: 38px !important;
  border-radius: 50%;
  transition: background var(--dur);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px !important; font-weight: 700; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--ochre); }
.swiper-pagination-bullet { background: var(--white); opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--ochre); opacity: 1; }

/* About badge */
.vb-about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px; height: 100px;
  background: var(--ochre);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-ink);
}
.vb-about__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-align: center;
  line-height: 1;
}
.vb-about__badge-year { font-size: 0.65rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.1em; }
.vb-about__badge-num  { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; }
.vb-about__badge-label { font-size: 0.6rem; opacity: 0.85; }

/* About media wrapper */
.vb-about__media { position: relative; }

/* About content */
.vb-about__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.vb-about__title em { font-weight: 400; color: var(--ochre); }
.vb-about__ornament {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--ochre), transparent);
  margin: 1.5rem 0 2rem;
}
.vb-about__bio p {
  font-family: var(--font-sans);
  font-size: 1.0rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.vb-about__bio strong { color: var(--ink); font-weight: 600; }
.vb-about__bio em { color: var(--gray); }
.vb-about__tagline {
  font-family: var(--font-deco);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}
.vb-about__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ─── GALLERY PREVIEW ────────────────────────────────────── */
.vb-section--portfolio { background: var(--white); }
/* Gallery Swiper Carrousel */
.vb-gallery-preview {
  position: relative;
  padding-bottom: 3rem;
}
.vb-gallery-preview .swiper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.vb-gallery-preview__item { background: var(--white); }
.vb-gallery-preview__link { display: block; position: relative; overflow: hidden; }
.vb-gallery-preview__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.vb-gallery-preview__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.vb-gallery-preview__placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.vb-gallery-preview__placeholder svg {
  width: 100%; height: 100%;
}
.vb-gallery-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,91,0.9) 0%, rgba(27,45,91,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  display: flex;
  align-items: flex-end;
}
.vb-gallery-preview__link:hover .vb-gallery-preview__overlay { opacity: 1; }
.vb-gallery-preview__link:hover .vb-gallery-preview__img { transform: scale(1.08); }
.vb-gallery-preview__info {
  padding: 1.2rem;
  color: var(--white);
  width: 100%;
}
.vb-gallery-preview__title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0 0 0.25rem;
}
.vb-gallery-preview__collection {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
}
.vb-gallery-preview__zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur), transform var(--dur);
}
.vb-gallery-preview__link:hover .vb-gallery-preview__zoom {
  opacity: 1;
  transform: scale(1);
}

/* ─── BOOKS SECTION ──────────────────────────────────────── */
.vb-section--books {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.vb-books-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(196,134,58,0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(196,134,58,0.08) 0%, transparent 40%);
  pointer-events: none;
}
/* Books Swiper Carrousel */
.vb-books-grid {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
}
.vb-books-grid .swiper {
  overflow: visible;
  padding: 0 0.5rem;
}
.vb-books-grid .swiper-slide {
  height: auto;
}
.vb-book-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,134,58,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.vb-book-card:hover .vb-book-card__inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(196,134,58,0.5);
}
.vb-book-card__cover {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.vb-book-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.vb-book-card:hover .vb-book-card__cover img { transform: scale(1.05); }
.vb-book-card__cover-placeholder {
  width: 100%; height: 100%;
}
.vb-book-card__cover-placeholder svg { width: 100%; height: 100%; }
.vb-book-card__award {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--ochre);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 1.5rem);
  line-height: 1.3;
}
.vb-book-card__info {
  padding: 1.5rem;
  color: var(--paper);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vb-book-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 0.5rem;
  color: var(--white);
}
.vb-book-card__meta {
  font-size: 0.78rem;
  color: var(--ochre);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.vb-book-card__desc {
  font-size: 0.88rem;
  color: rgba(248,244,239,0.7);
  line-height: 1.6;
  flex: 1;
}
.vb-book-card__btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(196,134,58,0.5);
  color: var(--ochre);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur);
  text-align: center;
}
.vb-book-card__btn:hover {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}

/* ─── VIDEO SECTION ──────────────────────────────────────── */
.vb-section--video {
  background: var(--charcoal);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.vb-section--video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.vb-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
.vb-video-content { text-align: center; margin-bottom: 3rem; }
.vb-video-content .vb-section-label { color: rgba(196,134,58,0.8); border-color: rgba(196,134,58,0.5); }
.vb-video-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0 1rem;
  font-style: italic;
}
.vb-video-subtitle { color: rgba(255,255,255,0.6); font-size: 1rem; }
.vb-video-embed__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.vb-video-embed__container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
/* Player vidéo natif (remplacement de l'iframe YouTube) */
.vb-video-embed__container:has(video) {
  padding-bottom: 0;
  height: auto;
}
.vb-video-embed__player {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  aspect-ratio: 16 / 9;
  background: #000;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */
.vb-section--services { background: var(--paper); }
.vb-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.vb-service-card {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  overflow: hidden;
}
.vb-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--ochre);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.vb-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,134,58,0.3);
}
.vb-service-card:hover::before { transform: scaleY(1); }
.vb-service-card__icon {
  width: 56px; height: 56px;
  color: var(--ochre);
  margin-bottom: 1.5rem;
}
.vb-service-card__icon svg { width: 100%; height: 100%; }
.vb-service-card__num {
  font-family: var(--font-deco);
  font-size: 3rem;
  color: rgba(196,134,58,0.12);
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}
.vb-service-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.vb-service-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.vb-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  transition: gap var(--dur);
}
.vb-service-card__link:hover { gap: 1rem; }

/* ─── EVENTS SECTION ─────────────────────────────────────── */
.vb-section--events { background: var(--white); }
.vb-events-list { display: flex; flex-direction: column; gap: 1.5rem; }
.vb-event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  transition: box-shadow var(--dur), transform var(--dur);
}
.vb-event-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.vb-event-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--paper-dark);
  padding-right: 2rem;
}
.vb-event-item__day {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.vb-event-item__month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  font-weight: 600;
}
.vb-event-item__year {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.2rem;
}
.vb-event-item__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.vb-event-item__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.vb-event-item__btn {
  padding: 0.55rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--dur);
  white-space: nowrap;
}
.vb-event-item__btn:hover { background: var(--ochre); }
.vb-events-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gray);
}
.vb-events-empty__icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; color: var(--gray-light); }
.vb-events-empty a { color: var(--ochre); }

/* ─── PRESS PREVIEW ──────────────────────────────────────── */
.vb-section--press-preview { background: var(--paper); }
.vb-press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.vb-press-logos__item {
  padding: 0.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: 3px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gray);
  transition: all var(--dur);
}
.vb-press-logos__item:hover {
  border-color: var(--ochre);
  color: var(--ink);
}
.vb-press-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 2.5rem;
  background: var(--white);
  border-left: 4px solid var(--ochre);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.vb-press-quote__text {
  font-family: var(--font-deco);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 1rem;
}
.vb-press-quote__source {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.vb-section--cta-final { padding: 0; }
.vb-cta-final {
  background: linear-gradient(135deg, var(--ink) 0%, #0F1A38 100%);
  padding: var(--space-xl) clamp(1rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-cta-final__content { position: relative; z-index: 1; }
.vb-cta-final__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  margin: 0 0 1rem;
}
.vb-cta-final__desc {
  font-size: 1.05rem;
  color: rgba(248,244,239,0.75);
  margin-bottom: 2.5rem;
}
.vb-cta-final__decoration {
  position: absolute;
  right: 5%;
  bottom: 0;
  opacity: 0.15;
  width: 300px;
}
.vb-cta-final__sketch { width: 100%; }

/* ─── GALERIE PAGE ───────────────────────────────────────── */
.vb-page--galerie { background: var(--paper); }

.vb-gallery-filters {
  background: var(--white);
  border-bottom: 1px solid var(--paper-dark);
  padding: 1.5rem 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(27,45,91,0.06);
}
.vb-gallery-filters__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.vb-gallery-filter {
  padding: 0.45rem 1rem;
  background: none;
  border: 1px solid var(--paper-dark);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.vb-gallery-filter:hover,
.vb-gallery-filter--active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* Gallery grid */
.vb-gallery-grid {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.vb-gallery-item__sizer { width: calc(33.333% - 1rem); }
.vb-gallery-item { break-inside: avoid; }
.vb-gallery-item__link { display: block; }
.vb-gallery-item__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-dark);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur);
}
.vb-gallery-item:hover .vb-gallery-item__img-wrap { box-shadow: var(--shadow-md); }
.vb-gallery-item__img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.vb-gallery-item:hover .vb-gallery-item__img { transform: scale(1.06); }
.vb-gallery-item__placeholder { width: 100%; }
.vb-gallery-item__placeholder svg { width: 100%; display: block; }
.vb-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,91,0.92) 0%, rgba(27,45,91,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  border-radius: var(--radius-md);
  display: none;
  align-items: flex-end;
  padding: 1.25rem;
}
.vb-gallery-item:hover .vb-gallery-item__overlay { opacity: 1; }
.vb-gallery-item__info { color: var(--white); }
.vb-gallery-item__title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0 0 0.35rem;
}
.vb-gallery-item__cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
}
.vb-gallery-item__zoom-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  color: rgba(255,255,255,0.8);
  transition: transform var(--dur), opacity var(--dur);
  opacity: 0;
  transform: scale(0.8);
}
.vb-gallery-item:hover .vb-gallery-item__zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Extra gallery links */
.vb-gallery-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 4rem;
}
.vb-gallery-extra__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--ink);
  border-radius: var(--radius-md);
  color: var(--paper);
  transition: transform var(--dur), box-shadow var(--dur);
}
.vb-gallery-extra__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ink);
}
.vb-gallery-extra__card-icon { width: 48px; height: 48px; color: var(--ochre); flex-shrink: 0; }
.vb-gallery-extra__card-icon svg { width: 100%; height: 100%; }
.vb-gallery-extra__card-info { flex: 1; }
.vb-gallery-extra__card-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 0.25rem;
}
.vb-gallery-extra__card-info p { font-size: 0.82rem; color: rgba(248,244,239,0.6); margin: 0; }
.vb-gallery-extra__card-arrow { color: var(--ochre); flex-shrink: 0; }

/* ─── EVENTS PAGE ────────────────────────────────────────── */
.vb-events-tabs {
  background: var(--white);
  border-bottom: 1px solid var(--paper-dark);
  padding: 0;
}
.vb-events-tabs__inner {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.vb-events-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  transition: color var(--dur), border-color var(--dur);
}
.vb-events-tab:hover { color: var(--ink); }
.vb-events-tab--active { color: var(--ink); border-bottom-color: var(--ochre); }

.vb-events-content { padding: 3rem 0; }
.vb-events-full-list { display: flex; flex-direction: column; gap: 2rem; }
.vb-event-full-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--paper-dark);
  transition: box-shadow var(--dur);
}
.vb-event-full-item:hover { box-shadow: var(--shadow-md); }
.vb-event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.vb-event-date-badge__start,
.vb-event-date-badge__end {
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--white);
  min-width: 80px;
}
.vb-event-date-badge__day {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.vb-event-date-badge__month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  margin-top: 0.2rem;
  font-weight: 600;
}
.vb-event-date-badge__year {
  display: block;
  font-size: 0.7rem;
  color: rgba(248,244,239,0.6);
}
.vb-event-date-badge__separator { color: var(--gray); font-size: 0.9rem; }
.vb-event-full-item__content { display: flex; gap: 1.5rem; }
.vb-event-full-item__thumb {
  width: 180px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.vb-event-full-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vb-event-full-item__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.vb-event-full-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vb-event-full-item__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.vb-event-full-item__body { font-size: 0.95rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 1.5rem; }

.vb-events-empty-state {
  text-align: center;
  padding: 5rem 1rem;
}
.vb-events-empty-state__icon { width: 80px; height: 80px; margin: 0 auto 2rem; color: var(--ochre); opacity: 0.5; }
.vb-events-empty-state__icon svg { width: 100%; height: 100%; }
.vb-events-empty-state__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.vb-events-empty-state__text { color: var(--gray); line-height: 1.7; }
.vb-events-empty-state__text a { color: var(--ochre); }

.vb-events-cta-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--ink);
  border-radius: var(--radius-md);
  margin-top: 3rem;
  color: var(--paper);
  flex-wrap: wrap;
}
.vb-events-cta-box__icon { width: 56px; height: 56px; color: var(--ochre); flex-shrink: 0; }
.vb-events-cta-box__icon svg { width: 100%; height: 100%; }
.vb-events-cta-box__content { flex: 1; }
.vb-events-cta-box__content h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin: 0 0 0.5rem; }
.vb-events-cta-box__content p { font-size: 0.9rem; color: rgba(248,244,239,0.7); margin: 0; }

/* ─── PRESS PAGE ─────────────────────────────────────────── */
.vb-press-content { padding: 3rem 0; }
.vb-press-timeline { position: relative; padding-left: 2.5rem; }
.vb-press-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ochre) 0%, var(--paper-dark) 100%);
}
.vb-press-timeline__year-marker {
  position: relative;
  margin: 2.5rem 0 1.5rem;
  padding-left: 0.5rem;
}
.vb-press-timeline__year-marker::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--ochre);
  border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 3px var(--ochre);
}
.vb-press-timeline__year-marker span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}
.vb-press-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}
.vb-press-item__dot {
  position: absolute;
  left: -2.5rem;
  top: 1rem;
  width: 8px; height: 8px;
  background: var(--gray-light);
  border-radius: 50%;
  border: 2px solid var(--paper);
  transition: background var(--dur);
}
.vb-press-item:hover .vb-press-item__dot { background: var(--ochre); }
.vb-press-item__content {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  transition: box-shadow var(--dur), border-color var(--dur);
}
.vb-press-item:hover .vb-press-item__content {
  box-shadow: var(--shadow-md);
  border-color: rgba(196,134,58,0.3);
}
.vb-press-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.vb-press-item__date {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.vb-press-item__source {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ochre);
  letter-spacing: 0.05em;
}
.vb-press-item__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.vb-press-item__title a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--dur);
}
.vb-press-item__title a:hover { color: var(--ochre); }
.vb-press-item__quote {
  font-family: var(--font-deco);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray);
  border-left: 3px solid var(--ochre);
  padding-left: 1rem;
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.vb-contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  padding: 4rem 0;
  align-items: start;
}
.vb-contact-form-intro h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

/* Form */
.vb-contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.vb-form-row { display: flex; gap: 1.5rem; }
.vb-form-row--half > * { flex: 1; }
.vb-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.vb-form-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.vb-form-required { color: var(--ochre); margin-left: 0.1em; }
.vb-form-input,
.vb-form-select,
.vb-form-textarea {
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--dur), box-shadow var(--dur);
  width: 100%;
}
.vb-form-input:focus,
.vb-form-select:focus,
.vb-form-textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(27,45,91,0.1);
}
.vb-form-input.vb-invalid,
.vb-form-select.vb-invalid,
.vb-form-textarea.vb-invalid {
  border-color: var(--rust);
}
.vb-form-textarea { resize: vertical; min-height: 160px; }
.vb-form-select-wrap { position: relative; }
.vb-form-select { appearance: none; cursor: pointer; padding-right: 2.5rem; }
.vb-form-select-wrap::after {
  content: '▼';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: var(--gray);
  pointer-events: none;
}
.vb-form-error { font-size: 0.78rem; color: var(--rust); min-height: 1rem; }

/* Checkbox */
.vb-form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.vb-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}
.vb-form-checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.vb-form-checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-light);
  border-radius: 3px;
  flex-shrink: 0;
  transition: border-color var(--dur), background var(--dur);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.vb-form-checkbox-label input:checked + .vb-form-checkbox-custom {
  background: var(--ink);
  border-color: var(--ink);
}
.vb-form-checkbox-label input:checked + .vb-form-checkbox-custom::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.vb-form-checkbox-label a { color: var(--ochre); }

.vb-form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.vb-btn__loading { display: none; align-items: center; gap: 0.5rem; }
.vb-btn--loading .vb-btn__text,
.vb-btn--loading .vb-btn__icon { display: none; }
.vb-btn--loading .vb-btn__loading { display: flex; }
.vb-spinner { animation: spin 1s linear infinite; width: 18px; height: 18px; }
@keyframes spin { to { transform: rotate(360deg); } }

.vb-form-notification {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}
.vb-form-notification--success {
  background: #EBF9F1;
  border: 1px solid #52C97C;
  color: #1A7340;
}
.vb-form-notification--error {
  background: #FEF0F0;
  border: 1px solid #EF4444;
  color: #B91C1C;
}
.vb-form-notification__inner { display: flex; align-items: center; gap: 0.75rem; }

/* Contact info sidebar */
.vb-contact-info__card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: var(--paper);
}
.vb-contact-info__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.vb-contact-info__items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.vb-contact-info__item { display: flex; align-items: flex-start; gap: 1rem; }
.vb-contact-info__item-icon {
  width: 40px; height: 40px;
  background: rgba(196,134,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  flex-shrink: 0;
}
.vb-contact-info__item-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,244,239,0.5);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.vb-contact-info__item-value {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}
.vb-contact-info__social { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.vb-contact-info__social-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,244,239,0.5);
  margin-bottom: 1rem;
}
.vb-contact-info__social-links { display: flex; flex-direction: column; gap: 0.75rem; }
.vb-contact-social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: rgba(248,244,239,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--dur);
}
.vb-contact-social-btn:hover { background: rgba(196,134,58,0.25); color: var(--white); }

.vb-contact-services {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1.5rem;
}
.vb-contact-services__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.vb-contact-services__list { display: flex; flex-direction: column; gap: 0.75rem; }
.vb-contact-services__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.vb-contact-services__list svg { color: var(--ochre); flex-shrink: 0; margin-top: 3px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.vb-footer { background: #0F1A38; color: rgba(248,244,239,0.7); }
.vb-footer__top { padding: 5rem 0 4rem; }
.vb-footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.vb-footer__artist-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.vb-footer__artist-title {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.vb-footer__tagline { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.vb-footer__social { display: flex; gap: 0.75rem; }
.vb-footer__social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: rgba(248,244,239,0.6);
  transition: background var(--dur), color var(--dur);
}
.vb-footer__social-link:hover { background: var(--ochre); color: var(--white); }
.vb-footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.vb-footer__nav { display: flex; flex-direction: column; gap: 0.75rem; }
.vb-footer__nav a {
  font-size: 0.9rem;
  color: rgba(248,244,239,0.65);
  transition: color var(--dur), padding-left var(--dur);
}
.vb-footer__nav a:hover { color: var(--white); padding-left: 0.5rem; }
.vb-footer__email {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--ochre);
  margin-bottom: 1rem;
  transition: opacity var(--dur);
}
.vb-footer__email:hover { opacity: 0.8; }
.vb-footer__ext-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(248,244,239,0.5);
  transition: color var(--dur);
}
.vb-footer__ext-link:hover { color: var(--ochre); }

.vb-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 0;
}
.vb-footer__bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  gap: 1rem;
}
.vb-footer__credit { font-size: 0.82rem; color: rgba(248,244,239,0.4); }
.vb-footer__credit a { color: var(--ochre); transition: opacity var(--dur); }
.vb-footer__credit a:hover { opacity: 0.8; }
.vb-footer__legal { display: flex; align-items: center; gap: 1rem; }
.vb-footer__legal a { font-size: 0.8rem; color: rgba(248,244,239,0.4); transition: color var(--dur); }
.vb-footer__legal a:hover { color: var(--white); }
.vb-footer__legal span { color: rgba(248,244,239,0.2); }
.vb-footer__ornament { text-align: center; padding: 0.5rem; opacity: 0.5; }
.vb-footer__ornament svg { max-width: 200px; margin: 0 auto; }

/* ─── SCROLL TO TOP ──────────────────────────────────────── */
.vb-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--dur), visibility var(--dur), transform var(--dur), background var(--dur);
  z-index: 500;
}
.vb-scroll-top.vb-scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vb-scroll-top:hover { background: var(--ochre); }

/* ─── GLIGHTBOX CUSTOM ───────────────────────────────────── */
.glightbox-container .gslide-description {
  font-family: var(--font-deco);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
.glightbox-container .gclose {
  background: rgba(255,255,255,0.15) !important;
  border-radius: 50%;
}

/* ─── POSTS GRID ─────────────────────────────────────────── */
.vb-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.vb-post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
}
.vb-post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vb-post-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.vb-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vb-post-card:hover .vb-post-card__thumb img { transform: scale(1.05); }
.vb-post-card__content { padding: 1.5rem; }
.vb-post-card__meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.5rem; }
.vb-post-card__title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); margin: 0 0 0.75rem; }
.vb-post-card__title a:hover { color: var(--ochre); }
.vb-post-card__excerpt { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.25rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vb-about { grid-template-columns: 1fr; gap: 3rem; }
  .vb-about__media { max-width: 380px; margin: 0 auto; }
  .vb-contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .vb-footer__container { grid-template-columns: 1fr 1fr; }
  .vb-gallery-extra { grid-template-columns: 1fr; }
  .vb-event-full-item { grid-template-columns: 100px 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 56px; }

  .vb-nav__burger { display: flex; }
  .vb-nav__menu {
    position: fixed;
    inset: var(--nav-height) 0 0;
    background: var(--white);
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 150;
    display: flex;
  }
  .vb-nav__menu.vb-nav__menu--open { transform: translateX(0); }
  .vb-nav-list { flex-direction: column; gap: 0; width: 100%; }
  .vb-nav-list > li > a {
    font-size: 1rem;
    padding: 1rem;
    letter-spacing: 0;
    border-bottom: 1px solid var(--paper-dark);
  }
  .vb-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    background: var(--paper);
    border-radius: 0;
  }
  .has-children.vb-open .vb-submenu { display: block; }
  .vb-submenu li a { padding-left: 2rem; }

  .vb-gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .vb-services-grid { grid-template-columns: 1fr; }
  .vb-event-item { grid-template-columns: 1fr; gap: 1rem; }
  .vb-event-item__date { border-right: none; border-bottom: 1px solid var(--paper-dark); padding-right: 0; padding-bottom: 1rem; flex-direction: row; justify-content: center; align-items: center; gap: 0.5rem; }
  .vb-footer__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .vb-footer__bottom-container { flex-direction: column; text-align: center; }
  .vb-events-tabs__inner { overflow-x: auto; }
  .vb-event-full-item { grid-template-columns: 1fr; }
  .vb-event-full-item__content { flex-direction: column; }
  .vb-form-row--half { flex-direction: column; }
  .vb-events-cta-box { flex-direction: column; text-align: center; }
	
	.vb-about { grid-template-columns: 1fr; gap: 2rem; }
  .vb-about__media { max-width: 320px; margin: 0 auto; width: 100%; }
  .vb-portrait-slider { aspect-ratio: 3/4; }
}

@media (max-width: 480px) {
  .vb-gallery-preview { grid-template-columns: 1fr; }
  .vb-gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .vb-about__ctas { flex-direction: column; }
  .vb-press-timeline { padding-left: 1.5rem; }
  .vb-press-timeline::before { left: 0; }
  .vb-press-item__dot { left: -1.5rem; }
  .vb-press-timeline__year-marker::before { left: -1.5rem; }
  .vb-books-grid { grid-template-columns: 1fr; }
}

/* ─── PRINT ───────────────────────────────────────────────── */
@media print {
  .vb-nav, .vb-loader, .vb-cursor, .vb-scroll-top, .vb-footer__ornament { display: none; }
  .vb-header, .vb-main, .vb-footer { box-shadow: none; }
}

/* ─── ACCESSIBILITY ──────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 2px;
  border-radius: 2px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── FILTRES GALERIE HIÉRARCHIQUES ─────────────────────────── */
.vb-filter-group { position: relative; display: inline-block; }
.vb-filter-btn--parent { display: flex; align-items: center; gap: 0.4rem; }
.vb-filter-arrow { font-size: 0.75rem; transition: transform 0.2s; }
.vb-filter-group.is-open .vb-filter-arrow { transform: rotate(180deg); }
.vb-filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 10;
  min-width: 160px;
  padding: 0.4rem 0;
}
.vb-filter-group.is-open .vb-filter-dropdown { display: block; }
.vb-filter-btn--child {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
}
.vb-filter-btn--child:hover,
.vb-filter-btn--child.is-active { background: var(--paper); color: var(--ochre); }
@media (max-width: 768px) {
  .vb-filter-dropdown { position: static; box-shadow: none; border: none; background: var(--paper); }
}


/* Press Media Link */
.vb-press-item__media {
  margin-top: 0.75rem;
}

.vb-press-item__media-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(var(--vb-gold-rgb, 193, 153, 85), 0.1);
  color: var(--vb-gold, #c19955);
  border: 1px solid rgba(var(--vb-gold-rgb, 193, 153, 85), 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.vb-press-item__media-link:hover {
  background: var(--vb-gold, #c19955);
  color: #fff;
  border-color: var(--vb-gold, #c19955);
  text-decoration: none;
}

.vb-press-item__media-link--video {
  background: rgba(220, 50, 50, 0.08);
  color: #c0392b;
  border-color: rgba(220, 50, 50, 0.25);
}

.vb-press-item__media-link--video:hover {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}

/* Press Video Player (inline <details>) */
.vb-press-item__video-details {
  margin-top: 0.75rem;
}

.vb-press-item__video-details summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
}

.vb-press-item__video-details summary::-webkit-details-marker {
  display: none;
}

.vb-press-item__video-details[open] summary {
  margin-bottom: 0.75rem;
}

.vb-press-item__video-player {
  display: block;
  width: 100%;
  max-width: 640px;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ─── CARROUSELS SWIPER (Galerie + Livres) ────────────────── */
.vb-gallery-preview .swiper-pagination,
.vb-books-grid .swiper-pagination {
  bottom: 0;
}
.vb-gallery-preview .swiper-pagination-bullet,
.vb-books-grid .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--ochre);
  opacity: 0.35;
  transition: all 0.3s ease;
}
.vb-gallery-preview .swiper-pagination-bullet-active,
.vb-books-grid .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}
.vb-gallery-preview .swiper-button-next,
.vb-gallery-preview .swiper-button-prev,
.vb-books-grid .swiper-button-next,
.vb-books-grid .swiper-button-prev {
  color: var(--white);
  background: rgba(27,45,91,0.65);
  width: 44px; height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease;
}
.vb-gallery-preview .swiper-button-next:hover,
.vb-gallery-preview .swiper-button-prev:hover,
.vb-books-grid .swiper-button-next:hover,
.vb-books-grid .swiper-button-prev:hover {
  background: rgba(196,134,58,0.85);
}
.vb-gallery-preview .swiper-button-next::after,
.vb-gallery-preview .swiper-button-prev::after,
.vb-books-grid .swiper-button-next::after,
.vb-books-grid .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}
/* Carrousel livres - nav hors du swiper */
.vb-books-grid {
  padding: 0 3rem 3.5rem;
}
@media (max-width: 768px) {
  .vb-books-grid { padding: 0 0 3rem; }
  .vb-gallery-preview .swiper-button-next,
  .vb-gallery-preview .swiper-button-prev,
  .vb-books-grid .swiper-button-next,
  .vb-books-grid .swiper-button-prev { display: none; }
}

/* ============================================================
   CONTACT FORM 7 — Style thème Vincent Brunot
   ============================================================ */

/* Reset & container */
.wpcf7 {
  width: 100%;
}

/* Labels */
.wpcf7 label {
  display: block;
  margin-bottom: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #1B2D5B;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Inputs, textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(27, 45, 91, 0.25);
  border-radius: 4px;
  background: #fff;
  color: #1B2D5B;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #C4863A;
  box-shadow: 0 0 0 3px rgba(196, 134, 58, 0.12);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(27, 45, 91, 0.4);
  font-style: italic;
}

/* Textarea height */
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}

/* Submit button */
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: #C4863A;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: #1B2D5B;
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

/* Messages de validation */
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #c0392b;
  font-style: italic;
}

.wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border: 1px solid #27ae60;
  background: rgba(39, 174, 96, 0.08);
  color: #1a7a42;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-spam-blocked {
  border: 1px solid #c0392b;
  background: rgba(192, 57, 43, 0.07);
  color: #922b21;
}

/* Spinner */
.wpcf7 .wpcf7-spinner {
  margin-left: 0.5rem;
}

/* Honeypot — caché */
.wpcf7 .wpcf7-form-control-wrap[data-name="honeypot-field"] {
  display: none !important;
  visibility: hidden !important;
}


/* ─── ÉVÉNEMENTS — SLIDER BIENVENUE (vb-event-card) ─────── */
.vb-events-cards-wrap {
  position: relative;
  padding-bottom: 3rem;
}
.vb-events-swiper {
  overflow: visible;
  padding: 0 0.5rem;
}
.vb-events-swiper .swiper-slide {
  height: auto;
}
.vb-event-card {
  height: 100%;
}
.vb-event-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.vb-event-card__link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.vb-event-card__visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-dark);
  flex-shrink: 0;
}
.vb-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.vb-event-card__link:hover .vb-event-card__img {
  transform: scale(1.05);
}
.vb-event-card__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
}
.vb-event-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}
.vb-event-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.vb-event-card__date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0;
}
.vb-event-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  margin: 0.2rem 0 0;
  line-height: 1.35;
}
.vb-event-card__lieu {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0.2rem 0 0;
}
.vb-events-cards-wrap .swiper-pagination { bottom: 0; }
.vb-events-cards-wrap .swiper-pagination-bullet { width: 8px; height: 8px; background: var(--ochre); opacity: 0.35; transition: all 0.3s ease; }
.vb-events-cards-wrap .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; }
.vb-events-cards-wrap .swiper-button-next,
.vb-events-cards-wrap .swiper-button-prev { color: var(--white); background: rgba(27,45,91,0.65); width: 44px; height: 44px; border-radius: 50%; backdrop-filter: blur(4px); transition: background 0.25s ease; }
.vb-events-cards-wrap .swiper-button-next:hover,
.vb-events-cards-wrap .swiper-button-prev:hover { background: rgba(196,134,58,0.85); }
.vb-events-cards-wrap .swiper-button-next::after,
.vb-events-cards-wrap .swiper-button-prev::after { font-size: 1rem; font-weight: 700; }

/* ─── ÉVÉNEMENTS — GRILLE ARCHIVE (vb-arc-card) ─────────── */
.vb-archive-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.vb-arc-card {
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.vb-arc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vb-arc-card__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.vb-arc-card__visual { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--paper-dark); flex-shrink: 0; }
.vb-arc-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.vb-arc-card:hover .vb-arc-card__img { transform: scale(1.04); }
.vb-arc-card__no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gray-light); }
.vb-arc-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--ink); color: var(--white); font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: 2px; }
.vb-arc-card__body { padding: 1.1rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 0.25rem; }
.vb-arc-card__date { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ochre); margin: 0; }
.vb-arc-card__title { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: var(--ink); margin: 0.15rem 0 0; line-height: 1.35; }
.vb-arc-card__lieu { font-size: 0.78rem; color: var(--gray); margin: 0.1rem 0 0; }
@media (max-width: 600px) { .vb-archive-events-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 380px) { .vb-archive-events-grid { grid-template-columns: 1fr; } }

/* ─── SINGLE ÉVÉNEMENT — NAVIGATION SOBRE ───────────────── */
.vb-event-nav-simple { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; padding: 2.5rem 0 1rem; margin-top: 2rem; border-top: 1px solid var(--paper-dark); }
.vb-event-nav-simple__all { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); transition: color var(--dur); }
.vb-event-nav-simple__all:hover { color: var(--ink); }
.vb-event-nav-simple__arrows { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.vb-event-nav-simple__prev,
.vb-event-nav-simple__next { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-serif); font-size: 0.92rem; font-style: italic; color: var(--ink); text-decoration: none; transition: color var(--dur); max-width: 220px; }
.vb-event-nav-simple__prev:hover,
.vb-event-nav-simple__next:hover { color: var(--ochre); }
.vb-event-nav-simple__prev span,
.vb-event-nav-simple__next span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 600px) {
  .vb-event-nav-simple { flex-direction: column; align-items: flex-start; }
  .vb-event-nav-simple__arrows { gap: 1rem; }
  .vb-event-nav-simple__prev, .vb-event-nav-simple__next { max-width: 100%; }
}
@media (max-width: 768px) {
  .vb-events-cards-wrap .swiper-button-next, .vb-events-cards-wrap .swiper-button-prev { display: none; }
}

/* ─── AJUSTEMENTS ESPACEMENT SECTION EVENTS ─────────────── */
.vb-section--events {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.vb-section--events .vb-section-header {
  margin-bottom: 2.5rem;
}
/* Aspect ratio 2/3 pour les affiches événements (plus compact) */
.vb-event-card__visual {
  aspect-ratio: 2/3;
}
.vb-arc-card__visual {
  aspect-ratio: 2/3;
}


/* ═══════════════════════════════════════════════════════
   CORRECTIONS PROPORTIONS — v2.1
   Réduction taille événements homepage + single
   ═══════════════════════════════════════════════════════ */

/* ─── HOMEPAGE : SLIDER ÉVÉNEMENTS — RÉDUCTION PROPORTIONS ─ */

/* Section globale : moins de padding vertical */
.vb-section--events {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.vb-section--events .vb-section-header {
  margin-bottom: 1.75rem !important;
}

/* Wrapper du carrousel */
.vb-events-cards-wrap {
  padding-bottom: 2.5rem !important;
}

/* Carte événement : ratio plus compact, hauteur limitée */
.vb-event-card__visual {
  aspect-ratio: 3/4 !important;
  max-height: 280px !important;
}

/* Limiter la hauteur totale d'une slide */
.vb-events-swiper .swiper-slide {
  max-width: 220px !important;
}

/* Body de la carte : espacements réduits */
.vb-event-card__body {
  padding: 0.9rem 1rem 1.1rem !important;
  gap: 0.2rem !important;
}

.vb-event-card__title {
  font-size: 0.92rem !important;
}

.vb-event-card__date {
  font-size: 0.68rem !important;
}

.vb-event-card__lieu {
  font-size: 0.75rem !important;
}

/* ─── SINGLE ÉVÉNEMENT — RÉDUCTION PROPORTIONS ───────────── */

/* Hero : hauteur réduite */
.vb-event-hero {
  min-height: 260px !important;
  padding-bottom: 2rem !important;
}

/* Body : moins de padding */
.vb-event-body {
  padding: 2.5rem 2rem 4rem !important;
}

/* Layout : colonne affiche plus étroite */
.vb-event-layout {
  grid-template-columns: 220px 1fr !important;
  gap: 3rem !important;
}

/* Affiche : ombre plus légère, cadre plus discret */
.vb-event-poster-frame {
  padding: 0.9rem 0.9rem 2rem !important;
  box-shadow: 0 4px 18px rgba(27,45,91,0.13), 0 1px 5px rgba(0,0,0,0.06) !important;
}

/* Navigation bas de page : simplifiée, plus discrète */
.vb-event-nav {
  margin-top: 2.5rem !important;
  padding-top: 2rem !important;
  gap: 1rem !important;
}

.vb-event-nav__item {
  padding: 0.8rem 1rem !important;
}

.vb-event-nav__thumb {
  height: 52px !important;
}

/* ─── RESPONSIVE TABLETTE ────────────────────────────────── */
@media (max-width: 900px) {
  .vb-event-layout {
    grid-template-columns: 180px 1fr !important;
    gap: 2rem !important;
  }
  .vb-event-card__visual {
    max-height: 240px !important;
  }
}

/* ─── RESPONSIVE MOBILE ──────────────────────────────────── */
@media (max-width: 600px) {
  .vb-event-layout {
    grid-template-columns: 1fr !important;
  }
  .vb-event-poster-frame {
    max-width: 220px !important;
    margin: 0 auto !important;
  }
  .vb-event-hero {
    min-height: 200px !important;
  }
  .vb-event-card__visual {
    max-height: 220px !important;
  }
}


/* ─── CORRECTIONS SUPPLÉMENTAIRES HOMEPAGE EVENTS ────────── */

/* Réduire le margin-top du bouton CTA de la section events */
.vb-section--events .vb-section-cta {
  margin-top: 1.5rem !important;
}

/* Réduire le padding-bottom de la section events */
.vb-section--events {
  padding-bottom: 2.5rem !important;
}


/* ─── RÉDUCTION FINALE ESPACE BAS SECTION EVENTS ─────────── */
/* Réduire le padding-bottom du wrapper carrousel (pagination dots) */
.vb-section--events .vb-events-cards-wrap {
  padding-bottom: 2rem !important;
}
/* Réduire encore le pb de la section */
.vb-section--events {
  padding-top: 2.5rem !important;
  padding-bottom: 2rem !important;
}


/* ═══════════════════════════════════════════════════════
   CORRECTIONS 3 ZONES — Bienvenue / Liste / Single
   ═══════════════════════════════════════════════════════ */

/* ─── 1. SLIDER ÉVÉNEMENTS HOMEPAGE (3 cartes, autoplay) ─── */

/* Reset max-width slide pour laisser Swiper gérer les 3 */
.vb-events-swiper .swiper-slide {
  max-width: none !important;
}

.vb-events-cards-wrap {
  position: relative;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

/* Boutons nav discrets */
.vb-events-cards-wrap .swiper-button-next,
.vb-events-cards-wrap .swiper-button-prev {
  width: 36px;
  height: 36px;
  background: rgba(27,45,91,0.08);
  border-radius: 50%;
  color: var(--ink);
  --swiper-navigation-size: 16px;
  top: 42%;
}
.vb-events-cards-wrap .swiper-button-next:hover,
.vb-events-cards-wrap .swiper-button-prev:hover {
  background: rgba(27,45,91,0.15);
}

.vb-events-cards-wrap .swiper-pagination-bullet {
  background: var(--ink);
  opacity: 0.25;
}
.vb-events-cards-wrap .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--ochre);
}

/* Carte : visual compact */
.vb-event-card {
  height: 100%;
}
.vb-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ─── 2. TIMELINE ÉVÉNEMENTS (page archive) ─────────────── */

.vb-events-timeline {
  position: relative;
  max-width: 860px;
  margin: 2.5rem auto 0;
  padding-left: 2rem;
}

.vb-events-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--navy), rgba(27,45,91,0.08));
}

/* Marqueur année */
.vb-events-timeline__year-marker {
  position: relative;
  margin: 2.5rem 0 1.5rem -2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vb-events-timeline__year-marker > span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--paper);
  padding-right: 0.75rem;
  position: relative;
  z-index: 1;
}

.vb-events-timeline__year-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(27,45,91,0.15);
}

/* Item timeline */
.vb-event-timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 0 0 1.75rem 1rem;
}

.vb-event-timeline-item__dot {
  position: absolute;
  left: -1.65rem;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ochre);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--ochre);
  flex-shrink: 0;
}

.vb-event-timeline-item__content {
  flex: 1;
  min-width: 0;
  border-bottom: 1px solid rgba(27,45,91,0.08);
  padding-bottom: 1.5rem;
}

.vb-event-timeline-item__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.vb-event-timeline-item__date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.vb-event-timeline-item__type {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  background: rgba(196,134,58,0.1);
  padding: 0.15em 0.55em;
  border-radius: 2px;
}

.vb-event-timeline-item__inner {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.vb-event-timeline-item__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 90px;
  overflow: hidden;
  border-radius: 3px;
  display: block;
}

.vb-event-timeline-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.vb-event-timeline-item__thumb:hover img {
  transform: scale(1.04);
}

.vb-event-timeline-item__text {
  flex: 1;
  min-width: 0;
}

.vb-event-timeline-item__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.35rem;
}

.vb-event-timeline-item__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--dur);
}

.vb-event-timeline-item__title a:hover {
  color: var(--ochre);
}

.vb-event-timeline-item__lieu {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
}

/* Responsive mobile */
@media (max-width: 600px) {
  .vb-events-timeline {
    padding-left: 1.25rem;
  }
  .vb-events-timeline::before {
    left: 0.35rem;
  }
  .vb-events-timeline__year-marker {
    margin-left: -1.25rem;
  }
  .vb-event-timeline-item__dot {
    left: -1.4rem;
  }
  .vb-event-timeline-item__thumb {
    width: 56px;
    height: 70px;
  }
  .vb-event-timeline-item__title {
    font-size: 0.95rem;
  }
}


/* ─── 3. NAVIGATION SINGLE ÉVÉNEMENT — version sobre ──────── */

/* Masquer l'ancienne nav si elle subsistait */
.vb-event-nav__item { display: none !important; }

/* Nouvelle navigation sobre */
.vb-event-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 0.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--paper-dark, rgba(27,45,91,0.12));
}

.vb-event-nav__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur);
  max-width: 280px;
  min-width: 0;
}

.vb-event-nav__link:hover {
  color: var(--ochre);
}

.vb-event-nav__link--prev { flex-direction: row; }
.vb-event-nav__link--next { flex-direction: row-reverse; text-align: right; }

.vb-event-nav__arrow {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--dur);
}
.vb-event-nav__link:hover .vb-event-nav__arrow {
  opacity: 1;
}

.vb-event-nav__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.vb-event-nav__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.vb-event-nav__title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.vb-event-nav__date {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--gray);
}

.vb-event-nav__all {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--gray);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--dur);
  flex-shrink: 0;
  padding: 0 0.5rem;
}
.vb-event-nav__all:hover {
  color: var(--ochre);
}

.vb-event-nav__placeholder {
  width: 280px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .vb-event-nav__row {
    gap: 0.75rem;
  }
  .vb-event-nav__title {
    max-width: 120px;
  }
  .vb-event-nav__placeholder {
    display: none;
  }
}


/* ============================================================
   SECTION SERVICES — CARTES VISUELLES
   "À votre service" — Page Bienvenue
   ============================================================ */

.vb-section--services {
  background: var(--paper-dark, #EDE8DF);
  padding: var(--space-xl, 5rem) 0;
}

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

/* Carte service avec visuel */
.vb-service-card--visual {
  background: var(--white, #ffffff);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 45, 91, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.vb-service-card--visual:hover {
  box-shadow: 0 12px 40px rgba(27, 45, 91, 0.15);
  transform: translateY(-3px);
}

/* Zone image */
.vb-service-card__img-wrap {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #EDE8DF;
  flex-shrink: 0;
}

.vb-service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.vb-service-card--visual:hover .vb-service-card__img {
  transform: scale(1.05);
}

.vb-service-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vb-service-card__placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vb-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 45, 91, 0) 40%,
    rgba(27, 45, 91, 0.12) 100%
  );
  pointer-events: none;
}

/* Corps de la carte */
.vb-service-card__body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.vb-service-card__num {
  font-family: var(--font-deco, 'Cormorant Garamond', serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--ochre, #C4863A);
  font-weight: 400;
  display: block;
  margin-bottom: 0.6rem;
}

.vb-service-card--visual .vb-service-card__title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink, #1B2D5B);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.vb-service-card--visual .vb-service-card__desc {
  font-family: var(--font-sans, 'Raleway', system-ui, sans-serif);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--charcoal, #2C2C2C);
  margin: 0 0 1.25rem;
  flex: 1;
}

.vb-service-card--visual .vb-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-sans, 'Raleway', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink, #1B2D5B);
  border-bottom: 1.5px solid var(--ochre, #C4863A);
  padding-bottom: 0.15em;
  transition: color 0.2s, gap 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.vb-service-card--visual .vb-service-card__link:hover {
  color: var(--ochre, #C4863A);
  gap: 0.7em;
}

/* ============================================================
   SINGLE PRESTATION — Page dédiée
   ============================================================ */

.vb-page--prestation {
  background: var(--paper, #F8F4EF);
  min-height: 60vh;
}

/* Hero */
.vb-prest-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-color: var(--ink, #1B2D5B);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-bottom: 3.5rem;
}

.vb-prest-hero--no-image {
  background-image: none;
  background: var(--ink, #1B2D5B);
}

.vb-prest-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.85) 0%, rgba(10,20,50,0.35) 55%, rgba(10,20,50,0.05) 100%);
  pointer-events: none;
}

.vb-prest-hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vb-prest-hero__breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  opacity: 0.65;
}

.vb-prest-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.vb-prest-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.vb-prest-hero__breadcrumb span {
  margin: 0 0.4em;
  opacity: 0.5;
}

.vb-prest-hero__num {
  font-family: var(--font-deco, 'Cormorant Garamond', serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--ochre, #C4863A);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.vb-prest-hero__title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Body */
.vb-prest-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.vb-prest-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* Intro */
.vb-prest-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink, #1B2D5B);
}

/* Types de prestations */
.vb-prest-types {
  margin-top: 2.5rem;
}

.vb-prest-types__title {
  font-family: var(--font-sans, 'Raleway', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray, #6B7280);
  margin: 0 0 1rem;
}

.vb-prest-types__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.vb-prest-types__item {
  font-family: var(--font-sans, 'Raleway', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink, #1B2D5B);
  background: rgba(27, 45, 91, 0.07);
  border: 1px solid rgba(27, 45, 91, 0.12);
  padding: 0.35em 0.85em;
  border-radius: 20px;
  line-height: 1.5;
}

/* Sidebar */
.vb-prest-sidebar {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Galerie */
.vb-prest-gallery {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(27, 45, 91, 0.1);
}

.vb-prest-section-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink, #1B2D5B);
  margin: 0 0 1.75rem;
}

.vb-prest-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.vb-prest-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  background: var(--paper-dark, #EDE8DF);
  display: block;
  line-height: 0;
}

.vb-prest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.vb-prest-gallery-item:hover img {
  transform: scale(1.06);
}

.vb-prest-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 45, 91, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
}

.vb-prest-gallery-item:hover .vb-prest-gallery-item__overlay {
  opacity: 1;
}

/* Documents */
.vb-prest-docs {
  background: #fff;
  border-radius: 3px;
  border: 1px solid rgba(196, 134, 58, 0.2);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.vb-prest-docs__header {
  font-family: var(--font-sans, 'Raleway', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray, #6B7280);
  padding: 1rem 1.5rem 0.85rem;
  margin: 0;
  border-bottom: 1px solid rgba(196, 134, 58, 0.12);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.vb-prest-doc-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--paper-dark, #EDE8DF);
  color: var(--ink, #1B2D5B);
  transition: background 0.2s, padding-left 0.2s;
}

.vb-prest-doc-item:last-child {
  border-bottom: none;
}

.vb-prest-doc-item:hover {
  background: var(--paper, #F8F4EF);
  padding-left: 2rem;
}

.vb-prest-doc-item__icon {
  width: 34px;
  height: 34px;
  background: var(--paper-dark, #EDE8DF);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre, #C4863A);
  flex-shrink: 0;
}

.vb-prest-doc-item__name {
  font-size: 0.88rem;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

.vb-prest-doc-item__desc {
  font-size: 0.7rem;
  color: var(--gray, #6B7280);
  display: block;
  margin-top: 0.1rem;
}

/* CTA Prestation */
.vb-prest-cta {
  background: var(--ink, #1B2D5B);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 5rem;
}

.vb-prest-cta__label {
  font-family: var(--font-sans, 'Raleway', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
  display: block;
}

.vb-prest-cta__title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
}

/* Responsive services */
@media (max-width: 900px) {
  .vb-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .vb-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .vb-service-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

/* Responsive single prestation */
@media (max-width: 900px) {
  .vb-prest-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vb-prest-sidebar {
    position: static;
  }
  .vb-prest-hero {
    min-height: 300px;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .vb-prest-body {
    padding: 2rem 1.25rem 4rem;
  }
  .vb-prest-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .vb-prest-hero__title {
    font-size: 1.75rem;
  }
}
