/* CodeVoie — thème « Émeraude & Lin » — landing Apple × Notion */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Sora:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

:root {
  --vo-vert: #2D4A22;
  --vo-vert-clair: #3F6B32;
  --vo-vert-pale: #EAF0E6;
  --vo-lin: #E8DCC4;
  --vo-lin-fonce: #D4C4A8;
  --vo-creme: #FAFAF8;
  --vo-blanc: #FFFFFF;
  --vo-encre: #1A1F18;
  --vo-gris: #6B7268;
  --vo-bordure: #E2DDD4;

  --vo-rayon: 6px;
  --vo-rayon-md: 14px;
  --vo-rayon-lg: 22px;

  --vo-ombre: 0 1px 3px rgba(26, 31, 24, .06);
  --vo-ombre-md: 0 8px 30px rgba(45, 74, 34, .08);
  --vo-ombre-lg: 0 24px 60px rgba(45, 74, 34, .12);

  --vo-largeur: 1080px;
  --vo-marge: clamp(20px, 5vw, 40px);
  --vo-espace-y: clamp(64px, 9vw, 110px);

  --vo-sans: 'Sora', system-ui, sans-serif;
  --vo-serif: 'Libre Baskerville', Georgia, serif;
  --vo-focus: 0 0 0 3px rgba(45, 74, 34, .25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--vo-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--vo-encre);
  background: var(--vo-creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--vo-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--vo-encre);
}

/* === Оболочка === */
.vo-page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.vo-inner {
  width: min(100% - var(--vo-marge) * 2, var(--vo-largeur));
  margin-inline: auto;
}

/* === Шапка === */
.vo-topbar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(250, 250, 248, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vo-bordure);
}

/* Затемнение — через drawer */
body.vo-menu-ouvert { overflow: hidden; }

/* === Drawer mobile (panneau latéral) === */
.vo-tiroir {
  position: fixed;
  inset: 0;
  z-index: 600;
  visibility: hidden;
  pointer-events: none;
}

.vo-tiroir.is-open {
  visibility: visible;
  pointer-events: auto;
}

.vo-tiroir__fond {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(26, 31, 24, .52);
  opacity: 0;
  transition: opacity .3s ease;
  cursor: pointer;
}

.vo-tiroir.is-open .vo-tiroir__fond { opacity: 1; }

.vo-tiroir__panneau {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--vo-blanc);
  box-shadow: -12px 0 48px rgba(26, 31, 24, .2);
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.32, .72, 0, 1);
}

.vo-tiroir.is-open .vo-tiroir__panneau { transform: translateX(0); }

.vo-tiroir__entete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--vo-bordure);
}

.vo-tiroir__titre {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vo-encre);
}

.vo-tiroir__croix {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon);
  background: var(--vo-creme);
  color: var(--vo-encre);
  font-size: 1.1rem;
}

.vo-tiroir__liste {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.vo-tiroir__liste a {
  display: block;
  padding: 17px 14px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--vo-encre);
  border-radius: var(--vo-rayon-md);
  transition: background .15s, color .15s;
}

.vo-tiroir__liste a + a { margin-top: 4px; }

.vo-tiroir__liste a:hover,
.vo-tiroir__liste a.is-active {
  background: var(--vo-vert-pale);
  color: var(--vo-vert);
}

.vo-tiroir__mail {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 18px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--vo-gris);
  border-top: 1px solid var(--vo-bordure);
  background: var(--vo-creme);
}

.vo-tiroir__mail:hover { color: var(--vo-vert); }

@media (min-width: 1025px) {
  .vo-tiroir { display: none; }
}

.vo-topbar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.vo-marque {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.vo-marque__glyph {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--vo-vert);
  color: var(--vo-lin);
  border-radius: var(--vo-rayon-md);
  font-family: var(--vo-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.vo-rubriques {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 28px;
}

.vo-rubriques a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--vo-gris);
  transition: color .2s;
}

.vo-rubriques a:hover,
.vo-rubriques a.is-active {
  color: var(--vo-vert);
}

.vo-topbar__courriel {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--vo-gris);
  transition: color .2s;
}

.vo-topbar__courriel:hover { color: var(--vo-vert); }

.vo-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon);
  background: var(--vo-blanc);
  place-items: center;
  padding: 0;
}

.vo-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--vo-encre);
  margin: 3px auto;
  transition: transform .25s, opacity .25s;
}

.vo-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.vo-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vo-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* === Герой — сбалансированная сцена === */
.vo-accroche {
  padding: clamp(20px, 3vw, 36px) 0;
  background: var(--vo-blanc);
  overflow: hidden;
}

.vo-accroche__scene {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  min-height: unset;
  padding-inline: var(--vo-marge);
  max-width: calc(var(--vo-largeur) + var(--vo-marge) * 2);
  margin-inline: auto;
}

.vo-accroche__panneau {
  display: grid;
  align-items: center;
  padding: clamp(16px, 3vw, 32px) 0;
  background: transparent;
}

.vo-accroche__contenu {
  width: min(100%, 520px);
  margin-inline: 0;
}

.vo-accroche h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin: 0 0 20px;
}

.vo-accroche__photo {
  position: relative;
  margin: 0;
  align-self: center;
}

.vo-accroche__photo img {
  width: 100%;
  height: clamp(340px, 48vh, 480px);
  max-height: 480px;
  min-height: unset;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--vo-rayon-lg);
  box-shadow: var(--vo-ombre-md);
}

.vo-accroche__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-md);
  box-shadow: var(--vo-ombre-md);
}

.vo-accroche__badge i {
  font-size: 1.4rem;
  color: var(--vo-vert);
}

.vo-accroche__badge strong {
  display: block;
  font-size: .88rem;
}

.vo-accroche__badge span {
  font-size: .75rem;
  color: var(--vo-gris);
}

.vo-etiquette {
  display: inline-block;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vo-vert);
  background: var(--vo-vert-pale);
  border-radius: 100px;
  margin-bottom: 20px;
}

.vo-accroche h1 em {
  font-style: italic;
  color: var(--vo-vert);
}

.vo-accroche__texte {
  font-size: 1.1rem;
  color: var(--vo-gris);
  margin: 0 0 32px;
  max-width: 52ch;
}

.vo-actions {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 12px;
  margin-bottom: 36px;
}

.vo-bouton {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--vo-rayon-md);
  border: none;
  transition: transform .15s, box-shadow .2s;
}

.vo-bouton--plein {
  background: var(--vo-vert);
  color: var(--vo-lin);
  box-shadow: var(--vo-ombre-md);
}

.vo-bouton--plein:hover {
  background: var(--vo-vert-clair);
  transform: translateY(-1px);
}

.vo-bouton--contour {
  background: transparent;
  color: var(--vo-encre);
  border: 1.5px solid var(--vo-bordure);
}

.vo-bouton--contour:hover {
  border-color: var(--vo-vert);
  color: var(--vo-vert);
}

.vo-bouton .vo-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: vo-ripple .6s ease-out;
  pointer-events: none;
}

@keyframes vo-ripple {
  to { transform: scale(4); opacity: 0; }
}

.vo-chiffres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--vo-bordure);
}

.vo-chiffres dt {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--vo-serif);
  color: var(--vo-vert);
}

.vo-chiffres dd {
  margin: 4px 0 0;
  font-size: .78rem;
  color: var(--vo-gris);
}

/* === Заголовки секций === */
.vo-titre-bloc {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.vo-titre-bloc--centre {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.vo-titre-bloc h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 12px;
}

.vo-titre-bloc p {
  margin: 0;
  color: var(--vo-gris);
  font-size: 1.05rem;
}

/* === Секции === */
.vo-zone {
  padding: var(--vo-espace-y) 0;
}

.vo-zone--lin { background: var(--vo-lin); }
.vo-zone--blanc { background: var(--vo-blanc); }
.vo-zone--vert-pale { background: var(--vo-vert-pale); }
.vo-zone--sombre {
  background: var(--vo-vert);
  color: var(--vo-lin);
}

.vo-zone--sombre h2,
.vo-zone--sombre h3 { color: var(--vo-lin); }

.vo-zone--sombre .vo-titre-bloc p { color: rgba(232, 220, 196, .75); }

/* === FAQ — вкладки === */
.vo-faq {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.vo-faq__onglets {
  display: grid;
  gap: 4px;
  position: sticky;
  top: 90px;
}

.vo-faq__onglet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  text-align: left;
  font-size: .88rem;
  font-weight: 500;
  color: var(--vo-gris);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--vo-rayon-md);
  transition: background .2s, color .2s, border-color .2s;
}

.vo-faq__onglet i { font-size: .95rem; width: 20px; text-align: center; }

.vo-faq__onglet:hover {
  background: var(--vo-blanc);
  border-color: var(--vo-bordure);
}

.vo-faq__onglet.is-active {
  background: var(--vo-blanc);
  color: var(--vo-vert);
  border-color: var(--vo-vert);
  box-shadow: var(--vo-ombre);
}

.vo-faq__panneaux {
  display: grid;
}

.vo-faq__panneau {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.vo-faq__panneau.is-visible { display: grid; }

.vo-faq__carte {
  padding: 24px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-md);
  transition: border-color .2s, transform .2s;
}

.vo-faq__carte:hover {
  border-color: var(--vo-vert);
  transform: translateY(-2px);
}

.vo-faq__carte h3 {
  font-family: var(--vo-sans);
  font-size: .95rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.vo-faq__carte p {
  margin: 0;
  font-size: .88rem;
  color: var(--vo-gris);
  line-height: 1.6;
}

/* === Bento — модульная сетка === */
.vo-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}

.vo-bento__tuile {
  padding: 28px;
  background: var(--vo-creme);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-md);
  transition: border-color .2s, transform .2s;
}

.vo-bento__tuile:hover {
  border-color: var(--vo-vert);
  transform: translateY(-2px);
}

.vo-bento__tuile--hero {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--vo-blanc);
  padding: 36px;
}

.vo-bento__tuile--large {
  grid-column: span 2;
  background: var(--vo-vert-pale);
  border-color: transparent;
}

.vo-bento__tuile--accent {
  background: var(--vo-lin);
  border-color: transparent;
}

.vo-bento__tuile--sombre {
  background: var(--vo-vert);
  color: var(--vo-lin);
  border-color: transparent;
}

.vo-bento__tuile--sombre h3 { color: var(--vo-lin); }
.vo-bento__tuile--sombre p { color: rgba(232, 220, 196, .8); }
.vo-bento__tuile--sombre .vo-bento__icone { color: var(--vo-lin); }

.vo-bento__tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--vo-vert);
  background: var(--vo-vert-pale);
  border-radius: 100px;
  margin-bottom: 12px;
}

.vo-bento__tuile--sombre .vo-bento__tag {
  background: rgba(255, 255, 255, .12);
  color: var(--vo-lin);
}

.vo-bento__tuile h3 {
  font-family: var(--vo-sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.vo-bento__tuile p {
  margin: 0;
  font-size: .86rem;
  color: var(--vo-gris);
  line-height: 1.6;
}

.vo-bento__icone {
  font-size: 1.4rem;
  color: var(--vo-vert);
  margin-bottom: 14px;
}

.vo-bento__liste {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.vo-bento__liste li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  font-size: .84rem;
  color: var(--vo-gris);
}

.vo-bento__liste i {
  color: var(--vo-vert);
  font-size: .75rem;
}

/* === Преимущества === */
.vo-atouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vo-atout {
  padding: 32px 28px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-md);
  transition: box-shadow .25s;
}

.vo-atout:hover { box-shadow: var(--vo-ombre-md); }

.vo-atout__icone {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: var(--vo-vert-pale);
  color: var(--vo-vert);
  border-radius: var(--vo-rayon);
  font-size: 1.1rem;
}

.vo-atout h3 {
  font-family: var(--vo-sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.vo-atout p {
  margin: 0;
  font-size: .88rem;
  color: var(--vo-gris);
}

/* === Кейсы === */
.vo-cas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vo-cas__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-md);
}

.vo-cas__tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--vo-vert);
  background: var(--vo-vert-pale);
  border-radius: 100px;
  margin-bottom: 8px;
}

.vo-cas__item h3 {
  font-family: var(--vo-sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.vo-cas__item p {
  margin: 0;
  font-size: .88rem;
  color: var(--vo-gris);
}

.vo-cas__icone {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--vo-lin);
  color: var(--vo-vert);
  border-radius: var(--vo-rayon-md);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* === Отзывы === */
.vo-avis-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vo-avis {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-md);
}

.vo-avis__etoiles {
  color: #C4A574;
  font-size: .85rem;
  letter-spacing: 2px;
}

.vo-avis blockquote {
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--vo-encre);
}

.vo-avis__auteur {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--vo-bordure);
}

.vo-avis__auteur img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.vo-avis__auteur strong {
  display: block;
  font-size: .88rem;
}

.vo-avis__auteur span {
  font-size: .75rem;
  color: var(--vo-gris);
}

/* === Обязательства === */
.vo-engagements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vo-engagement {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(232, 220, 196, .2);
  border-radius: var(--vo-rayon-md);
}

.vo-engagement i {
  font-size: 1.5rem;
  color: var(--vo-lin);
  margin-bottom: 12px;
}

.vo-engagement h3 {
  font-family: var(--vo-sans);
  font-size: .9rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.vo-engagement p {
  margin: 0;
  font-size: .78rem;
  color: rgba(232, 220, 196, .7);
}

/* === Контакт — fil d'échange === */
.vo-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.vo-echange {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.vo-echange__intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 14px;
}

.vo-echange__intro p {
  margin: 0;
  color: var(--vo-gris);
  font-size: 1.02rem;
  max-width: 42ch;
}

.vo-echange__fil {
  background: var(--vo-creme);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-lg);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.vo-echange__entete-fil {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vo-bordure);
}

.vo-echange__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--vo-vert);
  color: var(--vo-lin);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 50%;
}

.vo-echange__entete-fil strong {
  display: block;
  font-size: .9rem;
}

.vo-echange__entete-fil span {
  font-size: .75rem;
  color: var(--vo-gris);
}

.vo-echange__bulle {
  max-width: 88%;
  padding: 14px 18px;
  font-size: .9rem;
  line-height: 1.55;
  border-radius: var(--vo-rayon-md) var(--vo-rayon-md) var(--vo-rayon-md) 4px;
}

.vo-echange__bulle--eux {
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  color: var(--vo-encre);
}

.vo-echange__sujets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.vo-echange__pastille {
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--vo-vert);
  background: var(--vo-vert-pale);
  border: 1px solid transparent;
  border-radius: 100px;
  transition: background .2s, border-color .2s;
}

.vo-echange__pastille:hover,
.vo-echange__pastille.is-picked {
  background: var(--vo-vert);
  color: var(--vo-lin);
}

.vo-echange__composer {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.vo-echange__identite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vo-echange__identite input,
.vo-echange__ligne textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: .9rem;
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon);
  background: var(--vo-blanc);
  transition: border-color .2s, box-shadow .2s;
}

.vo-echange__identite input:focus,
.vo-echange__ligne textarea:focus {
  outline: none;
  border-color: var(--vo-vert);
  box-shadow: var(--vo-focus);
}

.vo-echange__ligne {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}

.vo-echange__ligne textarea {
  min-height: 72px;
  resize: vertical;
}

.vo-echange__envoi {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--vo-vert);
  color: var(--vo-lin);
  border: none;
  border-radius: 50%;
  transition: background .2s, transform .15s;
}

.vo-echange__envoi:hover {
  background: var(--vo-vert-clair);
  transform: scale(1.05);
}

.vo-echange__note {
  margin: 0;
  font-size: .72rem;
  color: var(--vo-gris);
  text-align: center;
}

.vo-echange__confirmation {
  display: none;
  text-align: center;
  padding: 24px;
  background: var(--vo-vert-pale);
  border-radius: var(--vo-rayon-md);
}

.vo-echange__confirmation.is-shown { display: block; }
.vo-echange__fil.is-sent .vo-echange__entete-fil,
.vo-echange__fil.is-sent .vo-echange__bulle,
.vo-echange__fil.is-sent .vo-echange__sujets,
.vo-echange__fil.is-sent .vo-echange__composer,
.vo-echange__fil.is-sent .vo-echange__note { display: none; }

.vo-echange__confirmation i {
  font-size: 2rem;
  color: var(--vo-vert);
  margin-bottom: 8px;
}

.vo-echange__confirmation p { margin: 0; font-size: .92rem; }

.vo-echange__bandeau {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 18px 24px;
  background: var(--vo-vert-pale);
  border-radius: var(--vo-rayon-md);
}

.vo-echange__info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--vo-gris);
  transition: color .2s;
}

.vo-echange__info:hover { color: var(--vo-vert); }

.vo-echange__info i { color: var(--vo-vert); font-size: .9rem; }

.vo-echange__sep {
  width: 1px;
  height: 16px;
  background: var(--vo-bordure);
}

/* Старые стили формы — для vues/contact.html */
.vo-contact-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.vo-formulaire {
  padding: 36px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-lg);
  box-shadow: var(--vo-ombre);
}

.vo-formulaire h3 {
  font-family: var(--vo-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.vo-formulaire__sous {
  font-size: .88rem;
  color: var(--vo-gris);
  margin: 0 0 24px;
}

.vo-champs {
  display: grid;
  gap: 16px;
}

.vo-champ label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--vo-gris);
}

.vo-champ input,
.vo-champ textarea,
.vo-champ select {
  width: 100%;
  padding: 12px 16px;
  font-size: .92rem;
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon);
  background: var(--vo-creme);
  transition: border-color .2s, box-shadow .2s;
}

.vo-champ input:focus,
.vo-champ textarea:focus,
.vo-champ select:focus {
  outline: none;
  border-color: var(--vo-vert);
  box-shadow: var(--vo-focus);
}

.vo-champ textarea { min-height: 120px; resize: vertical; }

.vo-formulaire .vo-bouton--plein { width: 100%; justify-content: center; margin-top: 8px; }

.vo-formulaire__note {
  margin: 12px 0 0;
  font-size: .75rem;
  color: var(--vo-gris);
  text-align: center;
}

.vo-formulaire__succes {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.vo-formulaire__succes.is-shown { display: block; }
.vo-formulaire__succes + .vo-formulaire__corps,
.vo-formulaire.is-sent .vo-formulaire__corps { display: none; }

.vo-formulaire__succes i {
  font-size: 2.5rem;
  color: var(--vo-vert);
  margin-bottom: 16px;
}

.vo-coordonnees {
  display: grid;
  gap: 20px;
}

.vo-coordonnee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--vo-vert-pale);
  border-radius: var(--vo-rayon-md);
}

.vo-coordonnee i {
  font-size: 1.1rem;
  color: var(--vo-vert);
  margin-top: 2px;
}

.vo-coordonnee strong {
  display: block;
  font-size: .88rem;
  margin-bottom: 2px;
}

.vo-coordonnee span,
.vo-coordonnee a {
  font-size: .85rem;
  color: var(--vo-gris);
}

.vo-coordonnee a:hover { color: var(--vo-vert); }

/* === Подвал — pilules + socle === */
.vo-bas {
  margin-top: auto;
}

.vo-bas__pilules-wrap {
  padding: 28px 0;
  background: var(--vo-lin);
  border-top: 1px solid var(--vo-bordure);
}

.vo-bas__pilules {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.vo-bas__pilule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--vo-encre);
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: 100px;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}

.vo-bas__pilule:hover {
  border-color: var(--vo-vert);
  color: var(--vo-vert);
  transform: translateY(-1px);
}

.vo-bas__pilule i { font-size: .78rem; color: var(--vo-vert); }

.vo-bas__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vo-lin-fonce);
  margin: 0 4px;
}

.vo-bas__socle {
  padding: 18px 0;
  background: var(--vo-vert);
  color: var(--vo-lin);
}

.vo-bas__socle-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.vo-bas__marque {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--vo-lin);
}

.vo-bas__marque .vo-marque__glyph {
  width: 28px;
  height: 28px;
  font-size: .85rem;
  background: rgba(255, 255, 255, .15);
}

.vo-bas__mail {
  font-size: .82rem;
  color: rgba(232, 220, 196, .85);
  transition: color .2s;
}

.vo-bas__mail:hover { color: var(--vo-lin); }

.vo-bas__copy {
  font-size: .75rem;
  color: rgba(232, 220, 196, .65);
}

/* === Cookie-баннер === */
.vo-tartine {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(92%, 640px);
  padding: 18px 24px;
  background: var(--vo-blanc);
  border: 1px solid var(--vo-bordure);
  border-radius: var(--vo-rayon-lg);
  box-shadow: var(--vo-ombre-lg);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.vo-tartine.is-visible { transform: translateX(-50%) translateY(0); }

.vo-tartine p {
  margin: 0;
  font-size: .82rem;
  color: var(--vo-gris);
}

.vo-tartine a { color: var(--vo-vert); text-decoration: underline; }

.vo-tartine__acts {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
}

.vo-tartine__acts .vo-bouton {
  padding: 10px 18px;
  font-size: .82rem;
}

/* === Анимация появления === */
[data-vo-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-vo-reveal].is-seen {
  opacity: 1;
  transform: translateY(0);
}

/* === Внутренние страницы === */
.vo-bandeau {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--vo-blanc);
  border-bottom: 1px solid var(--vo-bordure);
}

.vo-bandeau h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 8px;
}

.vo-bandeau__date {
  font-size: .88rem;
  color: var(--vo-gris);
  margin: 0;
}

.vo-prose {
  padding: clamp(40px, 6vw, 72px) 0;
  max-width: 720px;
}

.vo-prose h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}

.vo-prose p, .vo-prose li {
  font-size: .95rem;
  color: var(--vo-gris);
}

.vo-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin: 20px 0;
}

.vo-prose th, .vo-prose td {
  padding: 10px 14px;
  border: 1px solid var(--vo-bordure);
  text-align: left;
}

.vo-prose th {
  background: var(--vo-vert-pale);
  font-weight: 600;
  color: var(--vo-vert);
}

.vo-prose code {
  font-size: .82rem;
  padding: 2px 6px;
  background: var(--vo-vert-pale);
  border-radius: 4px;
}

.vo-prose a { color: var(--vo-vert); text-decoration: underline; }

/* === Адаптив === */
@media (max-width: 1024px) {
  .vo-topbar__row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .vo-rubriques { display: none; }

  .vo-topbar__courriel { display: none; }

  .vo-hamburger {
    display: grid;
    justify-self: end;
  }

  .vo-accroche__scene {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline: var(--vo-marge);
  }

  .vo-accroche__photo { order: -1; }

  .vo-accroche__photo img {
    height: clamp(220px, 36vw, 340px);
    max-height: 340px;
  }

  .vo-accroche__panneau {
    padding: 0 0 clamp(8px, 2vw, 16px);
  }

  .vo-bento {
    grid-template-columns: 1fr 1fr;
  }

  .vo-bento__tuile--hero,
  .vo-bento__tuile--large {
    grid-column: span 2;
  }

  .vo-bento__tuile--hero { grid-row: span 1; }

  .vo-echange { grid-template-columns: 1fr; }

  .vo-echange__sep { display: none; }

  .vo-faq { grid-template-columns: 1fr; }
  .vo-faq__onglets {
    position: static;
    grid-auto-flow: column;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }

  .vo-faq__onglet { white-space: nowrap; }

  .vo-atouts { grid-template-columns: 1fr; }
  .vo-cas { grid-template-columns: 1fr; }
  .vo-avis-grille { grid-template-columns: 1fr; }
  .vo-engagements { grid-template-columns: repeat(2, 1fr); }
  .vo-contact-grille { grid-template-columns: 1fr; }
  .vo-bas__socle-row { justify-content: center; text-align: center; }
  .vo-bas__pilules { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .vo-actions { grid-auto-flow: row; }
  .vo-chiffres { grid-template-columns: 1fr; gap: 12px; }
  .vo-bento { grid-template-columns: 1fr; }
  .vo-bento__tuile--hero,
  .vo-bento__tuile--large { grid-column: span 1; }
  .vo-echange__identite { grid-template-columns: 1fr; }
  .vo-engagements { grid-template-columns: 1fr; }
  .vo-bas__sep { display: none; }
  .vo-tartine { grid-template-columns: 1fr; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-vo-reveal] { opacity: 1; transform: none; transition: none; }
  .vo-bouton .vo-ripple { display: none; }
}
