/* ============================================================
   Maison Éphémère — Sous-rubrique Vin d'honneur
   Tokens identiques à la landing page (traiteurmaquette.pen)
   ============================================================ */

:root {
  --anthracite:    var(--wp--preset--color--primary, #13243C);
  --bg-cream:      var(--wp--preset--color--bg, #FAFAF8);
  --bg-gray:       var(--wp--preset--color--bg-alt, #F5F5F3);
  --border-subtle: var(--wp--preset--color--border, #E8E8E3);
  --brass:         var(--wp--preset--color--secondary, #C6A24F);
  --footer-bg:     var(--wp--preset--color--primary-dark, #0E1B2E);
  --accent:        var(--wp--preset--color--accent, #1E3A5C);
  --accent-soft:   rgba(30, 58, 92, 0.13);
  --text-light:    var(--wp--preset--color--light, #E5E5E0);
  --text-muted:    var(--wp--preset--color--muted, #9A9A95);
  --text-primary:  var(--wp--preset--color--text, #1A1A1A);
  --text-secondary:var(--wp--preset--color--text-secondary, #5C5C58);
  --white:         var(--wp--preset--color--white, #FFFFFF);

  --serif: var(--wp--preset--font-family--display, "Ysabeau SC", Georgia, serif);
  --sans:  var(--wp--preset--font-family--body, "Ysabeau", system-ui, -apple-system, sans-serif);

  --content:    1280px;
  --side:       80px;
  --maxw:       1440px;
  --radius:     2px;
  --radius-pill:9999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
hr { border: none; }

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
  user-select: none;
}

/* ---------- Shared primitives ---------- */
.page { width: 100%; background: var(--bg-cream); overflow-x: clip; }
.section { padding: 88px max(var(--side), calc((100% - var(--content)) / 2)); }
.eyebrow {
  display: block;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
}
.h2 {
  font-family: var(--serif); font-weight: 500;
  color: var(--text-primary); line-height: 1.15;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  border-radius: var(--radius); cursor: pointer; white-space: nowrap;
  transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn--sm { padding: 10px 20px; font-size: 15px; }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--outline {
  background: var(--white); color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}
.btn--outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 16px; font-weight: 600;
  font-family: var(--sans);
  background: var(--white); color: var(--accent);
  border: 1.5px solid var(--accent); border-radius: var(--radius);
  cursor: pointer; transition: opacity .15s;
}
.btn--outline-dark:hover { opacity: .85; }
.btn--outline-dark i { width: 16px; height: 16px; }
.btn svg { width: 15px; height: 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 max(var(--side), calc((100% - var(--content)) / 2));
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 23px; font-weight: 500;
  color: var(--text-primary);
}
.logo__icon { color: var(--accent); width: 22px; height: 22px; }
.logo svg { width: 22px; height: 22px; }
.nav {
  display: flex; align-items: center; gap: 26px;
}
.nav a {
  font-size: 15px; color: var(--text-secondary);
  transition: color .15s;
}
.nav a:hover { color: var(--text-primary); }
.header__actions { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   HERO VIN D'HONNEUR
   ============================================================ */
.hero-vdh { padding: 0; background: transparent; }
.hero-vdh__banner {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background-image: url('https://images.unsplash.com/photo-1619143838893-fd8e90a5b243?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&w=1440&q=80');
  background-size: cover; background-position: center;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 40px max(var(--side), calc((100% - var(--content)) / 2)) 56px;
}
.hero-vdh__tint {
  position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.30);
  pointer-events: none;
}
.hero-vdh__grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,26,26,0.94) 100%);
  pointer-events: none;
}
.hero-vdh__top,
.hero-vdh__bottom { position: relative; z-index: 1; }

/* Breadcrumb */
.hero-vdh__top {
  display: flex; align-items: center; justify-content: space-between;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  background: rgba(26,26,26,0.45);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 8px 15px;
  font-size: 14px;
}
.breadcrumb span { color: var(--text-light); }
.breadcrumb__sep { color: var(--text-muted); }
.breadcrumb__current { color: var(--white); font-weight: 600; }
.hero-vdh__formula-tag {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 14px; font-weight: 500; color: var(--white);
}
.hero-vdh__formula-tag svg { width: 14px; height: 14px; color: var(--white); }

/* Bottom row */
.hero-vdh__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
}
.hero-vdh__headline { flex: 1; }
.hero-vdh__eyebrow {
  display: block;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  color: var(--brass); margin-bottom: 16px;
}
.hero-vdh__h1 {
  font-family: var(--serif); font-size: 56px; font-weight: 500;
  color: var(--white); line-height: 1.06; margin-bottom: 20px;
}
.hero-vdh__chapeau {
  font-size: 19px; color: var(--text-light);
  line-height: 1.55; max-width: 560px;
}

/* Facts card */
.facts-card {
  flex-shrink: 0; width: 340px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
}
.facts-card__head {
  padding: 18px 22px 14px;
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text-primary);
}
.facts-card__div {
  height: 1px; background: var(--border-subtle); margin: 0;
}
.facts-card__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px; gap: 12px;
}
.facts-card__label {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; color: var(--text-muted);
}
.facts-card__label svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.facts-card__val {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  text-align: right;
}

/* ============================================================
   SECTION 3 — DÉFINITION
   ============================================================ */
.def-section {
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; gap: 44px;
}
.def-section__head {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; max-width: 740px; text-align: center;
}
.def-section__head .h2 { font-size: 38px; }
.def-section__lead {
  font-size: 18px; color: var(--text-secondary); line-height: 1.65;
}
.def-trio {
  display: flex; gap: 20px; width: 100%;
}
.def-card {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-cream); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 28px;
}
.def-card__icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border-radius: var(--radius);
}
.def-card__icon-wrap svg { width: 22px; height: 22px; color: var(--accent); }
.def-card__lbl { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.def-card__val {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--text-primary); line-height: 1.3;
}

/* ============================================================
   SECTION 4 — INCLUS
   ============================================================ */
.inclus-section {
  background: var(--bg-gray);
  display: flex; align-items: flex-start; gap: 64px;
}
.inclus-left {
  flex: 1; display: flex; flex-direction: column; gap: 18px;
}
.inclus-left .h2 { font-size: 36px; }
.inclus-left__p {
  font-size: 17px; color: var(--text-secondary); line-height: 1.6;
}
.inclus-note {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 15px; font-weight: 500; color: var(--text-secondary);
}
.inclus-note svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
.inclus-card {
  width: 520px; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.inclus-card__title {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text-primary);
}
.inclus-card__div { height: 1px; background: var(--border-subtle); margin: 0; }
.inclus-list {
  display: flex; flex-direction: column; gap: 11px;
}
.inclus-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.4;
}
.inclus-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   SECTION 5 — TARIFS
   ============================================================ */
.tarifs-section {
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.tarifs-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; max-width: 680px; text-align: center;
}
.tarifs-head .h2 { font-size: 36px; }
.tarifs-head__sub { font-size: 16px; color: var(--text-secondary); line-height: 1.55; }
.tarifs-tiers {
  display: flex; gap: 20px; width: 100%; align-items: stretch; min-height: 360px;
}
.tier-card {
  flex: 1; display: flex; flex-direction: column; gap: 16px;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 28px;
}
.tier-card--featured { border: 2px solid var(--accent); }
.tier-card__slot { height: 24px; display: flex; align-items: center; }
.tier-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--white);
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius); padding: 5px 12px;
}
.tier-card__badge svg { width: 12px; height: 12px; }
.tier-card__hd { display: flex; flex-direction: column; gap: 3px; }
.tier-card__name { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.tier-card__tag-lbl { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.tier-card__from {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-muted); text-align: center;
}
.tier-card__price {
  display: flex; align-items: flex-end; justify-content: center; gap: 4px;
}
.tier-card__amount { font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--accent); }
.tier-card__unit { font-size: 14px; color: var(--text-muted); padding-bottom: 6px; }
.tier-card__div { height: 1px; background: var(--border-subtle); margin: 0; }
.tier-card__list { display: flex; flex-direction: column; gap: 9px; }
.tier-card__list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.35;
}
.tier-card__list li svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.tarifs-foot {
  font-size: 14px; color: var(--text-muted); text-align: center;
}

/* ============================================================
   SECTION 6 — PIÈCES
   ============================================================ */
.pieces-section {
  background: var(--bg-gray);
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.pieces-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; max-width: 680px; text-align: center;
}
.pieces-head .h2 { font-size: 36px; }
.pieces-head__sub { font-size: 16px; color: var(--text-secondary); line-height: 1.55; }
.pieces-cols { display: flex; gap: 24px; width: 100%; }
.pieces-col {
  flex: 1; display: flex; flex-direction: column; gap: 16px;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 32px; overflow: hidden;
}
.pieces-col__img {
  width: calc(100% + 64px); max-width: none; margin: -32px -32px 0;
  height: 180px; object-fit: cover;
}
.pieces-col__th {
  display: flex; align-items: center; gap: 10px;
}
.pieces-col__icon-wrap {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border-radius: var(--radius);
}
.pieces-col__icon-wrap svg { width: 19px; height: 19px; color: var(--accent); }
.pieces-col__th > span { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.pieces-col hr { height: 1px; background: var(--border-subtle); margin: 0; }
.pieces-list { display: flex; flex-direction: column; gap: 11px; }
.pieces-list li {
  display: flex; align-items: center; gap: 11px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.4;
}
.pieces-list__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ============================================================
   SECTION 6b — GALERIE
   ============================================================ */
.gallery-section {
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.gallery-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; max-width: 680px; text-align: center;
}
.gallery-head .h2 { font-size: 36px; }
.gallery-head__sub { font-size: 16px; color: var(--text-secondary); line-height: 1.55; }
.gallery-mosaic {
  display: flex; gap: 16px; width: 100%; height: 520px;
}
.gallery-mosaic__feature {
  flex: 1; min-height: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.gallery-mosaic__feature img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-mosaic__grid {
  width: 520px; flex-shrink: 0; height: 100%; min-height: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.gallery-mosaic__row {
  flex: 1; min-height: 0; display: flex; gap: 16px;
}
.gallery-mosaic__cell {
  flex: 1; min-height: 0; position: relative;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.gallery-mosaic__cell img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-mosaic__label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(19,36,60,0.80);
  color: var(--white); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius); padding: 5px 10px;
}

/* ============================================================
   SECTION 7 — AVIS
   ============================================================ */
.avis-section {
  background: var(--bg-gray);
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.avis-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; max-width: 760px; text-align: center;
}
.avis-head .h2 { font-size: 38px; }
.google-widget {
  width: 1180px; max-width: 100%;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 36px;
  display: flex; flex-direction: column; gap: 28px;
}
.gw-topbar {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.gw-rating { display: flex; align-items: center; gap: 16px; }
.gw-logo { line-height: 1; }
.gw-score-block { display: flex; flex-direction: column; gap: 6px; }
.gw-score-row { display: flex; align-items: center; gap: 10px; }
.gw-score { font-family: var(--serif); font-size: 30px; font-weight: 600; }
.gw-stars { display: flex; gap: 2px; }
.gw-stars .material-symbols-rounded { font-size: 20px; color: var(--accent); }
.gw-count { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.gw-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--accent);
}
.gw-link .material-symbols-rounded { font-size: 18px; }
.gw-cards { display: flex; gap: 20px; }
.rev-card {
  flex: 1; display: flex; flex-direction: column; gap: 16px;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 24px;
}
.rev-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.rev-card__who { display: flex; align-items: center; gap: 12px; }
.rev-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--white);
  flex-shrink: 0;
}
.rev-card__meta { display: flex; flex-direction: column; gap: 2px; }
.rev-card__meta strong { font-size: 16px; font-weight: 600; }
.rev-card__meta span { font-size: 13px; color: var(--text-muted); }
.rev-card__g-logo {
  font-family: 'Inter', sans-serif; font-size: 19px;
  font-weight: 700; color: #4285F4;
}
.rev-card__stars {
  display: flex; align-items: center; gap: 3px;
}
.rev-card__stars .material-symbols-rounded { font-size: 16px; color: var(--accent); }
.gw-verified { color: #1A73E8 !important; }
.rev-card__text {
  font-size: 15.5px; color: var(--text-secondary); line-height: 1.55;
}
.gw-dots {
  display: flex; justify-content: center; gap: 8px;
}
.gw-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-subtle); transition: background .2s;
}
.gw-dot.is-active { background: var(--accent); }

/* ============================================================
   SECTION 8 — DÉROULÉ
   ============================================================ */
.deroule-section {
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.deroule-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; max-width: 680px; text-align: center;
}
.deroule-head .h2 { font-size: 36px; }
.deroule-head__sub { font-size: 16px; color: var(--text-secondary); line-height: 1.55; }
.deroule-steps {
  display: flex; gap: 16px; width: 100%; align-items: stretch;
}
.deroule-card {
  flex: 1; display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-cream); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 24px;
}
.deroule-card__time {
  display: inline-flex; align-items: center;
  background: var(--accent-soft); border-radius: var(--radius);
  padding: 5px 11px;
  font-size: 13.5px; font-weight: 600; color: var(--accent);
  align-self: flex-start;
}
.deroule-card__ti {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--text-primary); line-height: 1.2;
}
.deroule-card__d {
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.45;
}

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-gray);
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.faq-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; max-width: 680px; text-align: center;
}
.faq-head .h2 { font-size: 36px; }
.faq-list {
  width: 860px; max-width: 100%;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.is-open { border-color: var(--accent); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-size: 17px; font-weight: 600; color: var(--text-primary);
  text-align: left;
}
.faq-q .material-symbols-rounded { flex-shrink: 0; font-size: 20px; color: var(--accent); }
.faq-q:hover { background: var(--bg-cream); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-a { padding: 0 24px 20px; }
.faq-a p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   SECTION 10 — SOFT CTA
   ============================================================ */
.soft-cta {
  background: var(--bg-cream);
  display: flex; align-items: center; justify-content: center;
}
.soft-cta__inner {
  max-width: 820px;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
}
.soft-cta__h2 { font-size: 34px; }
.soft-cta__sub {
  font-size: 17px; color: var(--text-secondary); line-height: 1.6;
  max-width: 640px;
}
.soft-cta__btns {
  display: flex; align-items: center; gap: 12px;
  margin-top: 10px;
}
.soft-cta__phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; color: var(--text-secondary);
  padding: 14px 8px;
}
.soft-cta__phone svg { width: 16px; height: 16px; }
.soft-cta__phone:hover { color: var(--text-primary); }

/* ============================================================
   SECTION 10b — MAILLAGE
   ============================================================ */
.maillage-section {
  background: var(--bg-gray);
  display: flex; flex-direction: column; gap: 32px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 10px 18px;
  font-size: 15px; font-weight: 600; color: var(--accent);
  align-self: flex-start; transition: opacity .15s;
}
.back-link:hover { opacity: .8; }
.back-link svg { width: 16px; height: 16px; }
.maillage-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; max-width: 680px; align-self: center; text-align: center;
}
.maillage-head .h2 { font-size: 32px; }
.sister-cards {
  display: flex; gap: 24px; width: 100%; min-height: 330px;
  padding-top: 8px;
}
.sister-card {
  flex: 1; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden;
}
.sister-card img {
  width: 100%; height: 160px; object-fit: cover;
}
.sister-card__body {
  flex: 1; display: flex; flex-direction: column; gap: 8px;
  padding: 24px;
}
.sister-card__body h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
}
.sister-card__body p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.5;
}
.sister-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--accent);
  margin-top: 4px; transition: gap .15s;
}
.sister-card__link:hover { gap: 10px; }
.sister-card__link svg { width: 15px; height: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 72px max(var(--side), calc((100% - var(--content)) / 2)) 32px;
  display: flex; flex-direction: column; gap: 44px;
}
.footer__top {
  display: flex; gap: 64px; justify-content: space-between;
}
.footer__brand { width: 340px; display: flex; flex-direction: column; gap: 18px; }
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--white);
}
.footer__logo svg { width: 22px; height: 22px; color: var(--accent); }
.footer__desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
}
.footer__nap { display: flex; flex-direction: column; gap: 10px; }
.footer__nap-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-light);
}
.footer__nap-row svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.footer__col {
  display: flex; flex-direction: column; gap: 14px;
}
.footer__col-title {
  font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: 0.5px;
  margin-bottom: 0;
}
.footer__col a {
  font-size: 15px; color: var(--text-muted);
  transition: color .15s;
}
.footer__col a:hover { color: var(--text-light); }
.footer__hours-row {
  display: flex; justify-content: space-between; gap: 16px;
  width: 220px;
}
.footer__hours-row span { font-size: 15px; color: var(--text-muted); }
.footer__hours-row strong { font-size: 15px; font-weight: 500; color: var(--text-light); }
.footer__divider { height: 1px; background: rgba(255,255,255,0.10); }
.footer__legal {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.footer__legal > span { font-size: 14px; color: var(--text-muted); }
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a {
  font-size: 14px; color: var(--text-muted);
  transition: color .15s;
}
.footer__legal-links a:hover { color: var(--text-light); }

/* ============================================================
   RESPONSIVE — 1100px (tablet)
   ============================================================ */
@media (max-width: 1100px) {
  :root { --side: 48px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .nav { gap: 16px; }
  .hero-vdh__h1 { font-size: 42px; }
  .hero-vdh__bottom { flex-direction: column; align-items: flex-start; }
  .facts-card { width: 100%; max-width: 480px; }
  .def-trio { flex-wrap: wrap; }
  .def-card { min-width: calc(50% - 10px); }
  .inclus-section { flex-direction: column; }
  .inclus-card { width: 100%; }
  .tarifs-tiers { flex-direction: column; }
  .tier-card { min-height: auto; }
  .pieces-cols { flex-direction: column; }
  .gallery-mosaic { height: 420px; }
  .gallery-mosaic__grid { width: 320px; }
  .gw-cards { flex-direction: column; }
  .google-widget { width: 100%; }
  .deroule-steps { flex-wrap: wrap; }
  .deroule-card { min-width: calc(50% - 8px); }
  .sister-cards { flex-direction: column; }
  .footer__top { flex-wrap: wrap; gap: 32px; }
  .footer__brand { width: 100%; }
}

/* ============================================================
   RESPONSIVE — 720px (mobile)
   ============================================================ */
@media (max-width: 720px) {
  :root { --side: 20px; }
  .section { padding-top: 48px; padding-bottom: 48px; }
  .header { height: 64px; gap: 12px; }
  .nav { display: none; }
  .header__actions .btn--outline { display: none; }   /* tel masqué : évite le débordement du header */
  .google-widget { padding: 24px; }
  .gw-topbar { flex-wrap: wrap; gap: 14px; }
  .hero-vdh__banner { min-height: 520px; padding-top: 20px; padding-bottom: 32px; }
  .hero-vdh__h1 { font-size: 32px; }
  .hero-vdh__chapeau { font-size: 17px; }
  .def-card { min-width: 100%; }
  .pieces-col__img { width: calc(100% + 64px); height: 140px; }
  .gallery-mosaic { flex-direction: column; height: auto; }
  .gallery-mosaic__feature { height: 240px; }
  .gallery-mosaic__grid { width: 100%; height: 260px; }
  .deroule-card { min-width: 100%; }
  .soft-cta__btns { flex-direction: column; align-items: center; }
  .footer { padding-top: 48px; padding-bottom: 24px; }
  .footer__top { flex-direction: column; gap: 24px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-vdh__top { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Header commun — page active + logo cliquable */
.header-nav a[aria-current="page"], .nav a[aria-current="page"] { color: var(--accent, #1E3A5C); font-weight: 600; }
.header-logo { text-decoration: none; color: inherit; cursor: pointer; }


.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
