/* =============================================================================
   Squelette — variables, base, flex & grid
   Échelle : html à 62.5% → 1rem ≈ 10px 
   ============================================================================= */

:root {
  /* Couleurs du site */
  --color-primary: #c6a47e;
  --color-primary-dark: #885c2d;
  --color-secondary: #212529;
  --color-body: #717171;

  /* Nuances de gris */
  --gray-100: #8e9198;
  --gray-200: #5c5f66;
  --gray-300: #3a3d42;

  /* Alias sémantiques */
  --color-text: var(--color-body);
  --color-text-muted: var(--gray-100);
  --color-heading: var(--color-secondary);
  --color-border: color-mix(in srgb, var(--gray-100) 45%, white);
  --color-white: #ffffff;
  --color-white-alt: color-mix(in srgb, var(--color-primary) 6%, white);

  /* Typo (Cabin / Roboto chargés dans fonts.css) */
  --font-heading: "Cabin";
  --font-body: "Roboto";
  --fw-light: 300;
  --fw-regular: 400;
  --fw-bold: 700;

  /* Tailles */
  --fs-xs: 1.2rem;
  --fs-sm: 1.4rem;
  --fs-base: 1.6rem;
  --fs-md: 1.8rem;
  --fs-lg: 2rem;
  --fs-xl: 2.4rem;
  --fs-2xl: 3rem;
  --fs-3xl: 3.6rem;
  --fs-4xl: 4.8rem;

  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  /* Espacements */
  --space-0: 0;
  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-5: 2rem;
  --space-6: 2.4rem;
  --space-8: 3.2rem;
  --space-10: 4rem;
  --space-12: 4.8rem;
  --space-16: 6.4rem;
  --space-20: 8rem;
  --space-24: 9.6rem;

  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.6rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgb(33 37 41 / 0.06);
  --shadow-md: 0 4px 12px rgb(33 37 41 / 0.08);
  --shadow-lg: 0 12px 40px rgb(33 37 41 / 0.12);

  --container-max: 128rem;
  --container-pad: var(--space-4);
  --header-height: 6.4rem;

  /* Bannière annonce + hero (main.css) */
  --color-announcement: var(--color-primary);
  --announcement-h: 4rem;
  --header-bar-h: 7.2rem;
  /* Bannière (hauteur + marges verticales) + barre logo/nav — espace réservé sous header fixe */
  --site-header-offset: calc(var(--announcement-h) + 1rem + var(--header-bar-h));
  --hero-overlay-bg: linear-gradient(
    180deg,
    rgb(0 0 0 / 0.5) 0%,
    rgb(0 0 0 / 0.35) 40%,
    rgb(0 0 0 / 0.55) 100%
  );

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* Fallback si color-mix indisponible (navigateurs très anciens) */
@supports not (color: color-mix(in srgb, white, black)) {
  :root {
    --color-border: #c8c9cc;
    --color-white-alt: #f7f4ef;
  }
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 32px;
  color: var(--gray-300);
  background-color: #f4ece2;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  border-radius: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-heading);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: var(--fs-4xl);
}
h2 {
  font-size: var(--fs-3xl);
}
h3 {
  font-size: var(--fs-2xl);
}
h4 {
  font-size: var(--fs-xl);
}
h5 {
  font-size: var(--fs-lg);
}
h6 {
  font-size: var(--fs-base);
}
@media(max-width: 767px) {
  h1 {
    font-size: var(--fs-3xl);
  }
  h2 {
    font-size: var(--fs-2xl);
  }
}
p {
  margin: 0 0 var(--space-4);
}

a {
  color: var(--color-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

/* Conteneur principal */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ----------------------------------------------------------------------------- Flex 
 * -------------------------------------------------------------------------- */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: var(--space-2);
}
.gap-4 {
  gap: var(--space-4);
}
.gap-6 {
  gap: var(--space-6);
}
.gap-8 {
  gap: var(--space-8);
}
.flex-1 {
  flex: 1 1 0%;
}

/* ----------------------------------------------------------------------------- Grid
 * -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* Colonnes responsives */
@media (min-width: 576px) {
  .grid-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ----------------------------------------------------------------------------- Utilitaires
 * -------------------------------------------------------------------------- */
.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;
}

.text-center {
  text-align: center;
}
.text-body {
  color: var(--color-text);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.py-section {
  padding-block: var(--space-12);
}
.px-container {
  padding-inline: var(--container-pad);
}


/* ----------------------------------------------------------------------------- Google Badge
 * -------------------------------------------------------------------------- */
.GoogleBagde {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #fff;
  border-radius: 8px;
  margin: 20px;
  position: fixed;
  bottom: 0;
  z-index: 999999;
  box-shadow: rgba(0, 0, 0, 0.15) 0 2px 12px;
  left: 0;
  right: auto;
}

.GoogleBagde .tzp-reviews-head__meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  line-height: 1.2;
}

.GoogleBagde .tzp-reviews-head__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.GoogleBagde .tzp-reviews-head__brand .injected-svg {
  width: 68px;
  height: auto;
}

.GoogleBagde .tzp-reviews-head__label {
  color: #5f6368;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

.GoogleBagde .tzp-reviews-head__rating-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.GoogleBagde .tzp-reviews-head__value {
  color: #202124;
  font-size: 20px;
  font-weight: 700;
}

.GoogleBagde .tzp-reviews-head__stars {
  display: inline-flex;
  gap: 2px;
}

.GoogleBagde .tzp-reviews-head__star {
  width: auto;
  height: auto;
  color: #fbbc04;
  font-size: 30px;
  line-height: 1;
}

.GoogleBagde .tzp-reviews-head__count {
  color: #5f6368;
  font-size: 12px;
}

.GoogleBagde .GoogleBagde-lire_avis_container {
  margin-top: 2px;
}

.GoogleBagde .link_avis_google {
  color: #1a73e8;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 600;
}

.GoogleBagde .link_avis_google:hover {
  text-decoration: underline;
}

.Mobile .GoogleBagde {
  width: 100%;
  margin: 0;
  transform: scale(1) !important;
  left: 0 !important;
  border-radius: 8px 8px 0 0;
  bottom: 76px;
  height: auto;
}

.menu_bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-primary);
  padding: 10px;
}
._btn_m {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}
._btn_m a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: black;
}
._btn_m a.btn-hero-ghost {
  font-size: 13px;
    padding: 12px;
    min-height: 1px;;
}