/**
 * Gozem Coworking — page de présentation
 *
 * Extrait de Gozem-Coworking-V28.html (bloc <style> inline, lignes 12-1218).
 * Le CSS d'origine est repris à l'identique pour garantir la parité visuelle.
 * Les seuls ajouts figurent dans le bloc « INTÉGRATION WORDPRESS » en fin de
 * fichier : ils accompagnent le passage des slides de background-image à de
 * vraies balises <img> (srcset + lazy-loading), sans modifier le rendu.
 *
 * Tout est scopé sous .gz-cw-page.
 *
 * @package Gozem_Revamp_Theme
 */

  /* ===== GOZEM COWORKING — styles scopés sous .gz-cw-page ===== */
  .gz-cw-page,
  .gz-cw-page *,
  .gz-cw-page *::before,
  .gz-cw-page *::after { box-sizing: border-box; }

  .gz-cw-page {
    /* Couleurs (héritées des tokens du site, avec repli) */
    --gz-green: var(--color-green-100, #179138);
    --gz-green-dark: var(--color-green-120, #0e5e24);
    --gz-green-soft: var(--color-green-40, #c5ebcf);
    --gz-white: var(--color-white, #ffffff);
    --gz-black: var(--color-grey-100, #16211b);
    --gz-grey: var(--color-grey-80, #5b6660);
    --gz-bg: var(--color-grey-10, #f5f8f5);
    --gz-surface: #ffffff;

    /* Teintes & séparateurs dérivés (repli statique) */
    --gz-tint: rgba(23, 145, 56, .08);
    --gz-tint-strong: rgba(23, 145, 56, .12);
    --gz-border: rgba(20, 33, 27, .10);

    /* Rayons */
    --gz-radius: 22px;
    --gz-radius-lg: 30px;

    /* Ombres */
    --gz-shadow-sm: 0 2px 10px rgba(16, 40, 24, .05);
    --gz-shadow-md: 0 20px 45px rgba(16, 40, 24, .09);
    --gz-shadow-lg: 0 34px 80px rgba(14, 94, 36, .16);

    /* Rythme vertical commun à toutes les sections */
    --gz-section: clamp(60px, 7.5vw, 104px);

    --gz-font: var(--font-sans, "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);

    font-family: var(--gz-font);
    color: var(--gz-black);
    background: var(--gz-white);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
  }

  /* Synchronise teintes/bordures avec le vert réel du thème quand c'est supporté */
  @supports (color: color-mix(in srgb, red, blue)) {
    .gz-cw-page {
      --gz-tint: color-mix(in srgb, var(--gz-green) 8%, transparent);
      --gz-tint-strong: color-mix(in srgb, var(--gz-green) 13%, transparent);
      --gz-border: color-mix(in srgb, var(--gz-black) 12%, transparent);
    }
  }

  .gz-cw-page a { text-decoration: none; color: inherit; }
  .gz-cw-page h1,
  .gz-cw-page h2,
  .gz-cw-page h3 { overflow-wrap: break-word; }

  .gz-cw-page :focus-visible {
    outline: 3px solid var(--gz-green);
    outline-offset: 3px;
    border-radius: 8px;
  }

  .gz-cw-container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 24px);
  }

  /* ---------- Boutons ---------- */
  .gz-cw-btn {
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: 800 15px/1 var(--gz-font);
    letter-spacing: .01em;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease,
                background-color .25s ease, color .25s ease, border-color .25s ease;
  }
  .gz-cw-btn-primary {
    background: var(--gz-green);
    color: var(--gz-white);
    box-shadow: var(--gz-shadow-lg);
  }
  .gz-cw-btn-primary:hover {
    background: var(--gz-green-dark);
    color: var(--gz-white);
    transform: translateY(-2px);
  }
  .gz-cw-btn-secondary {
    background: var(--gz-white);
    color: var(--gz-green);
    border-color: var(--gz-green-soft);
  }
  .gz-cw-btn-secondary:hover {
    border-color: var(--gz-green);
    color: var(--gz-green-dark);
    transform: translateY(-2px);
  }
  .gz-cw-btn:active { transform: translateY(0); }

  /* ---------- Étiquettes de section (harmonisées) ---------- */
  .gz-cw-kicker,
  .gz-cw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gz-green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .gz-cw-kicker::before,
  .gz-cw-eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    flex: 0 0 auto;
  }

  .gz-cw-section-head {
    max-width: 780px;
    margin-bottom: clamp(30px, 4vw, 46px);
  }
  .gz-cw-section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .gz-cw-section-head p {
    margin: 16px 0 0;
    color: var(--gz-grey);
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.7;
  }

  /* ---------- HERO ---------- */
  .gz-cw-hero {
    padding: clamp(48px, 6vw, 80px) 0 var(--gz-section);
    background:
      radial-gradient(1100px 480px at 92% -8%, var(--gz-tint-strong), transparent 60%),
      linear-gradient(180deg, var(--gz-white) 0%, var(--gz-bg) 100%);
  }
  .gz-cw-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
  }
  .gz-cw-eyebrow { margin-bottom: 20px; }
  .gz-cw-hero h1 {
    margin: 0;
    font-size: clamp(40px, 5.6vw, 78px);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 900;
  }
  .gz-cw-hero h1 span { color: var(--gz-green); }
  .gz-cw-hero p {
    margin: 24px 0 0;
    color: var(--gz-grey);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.65;
    max-width: 560px;
  }
  .gz-cw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }
  .gz-cw-hero-photo {
    position: relative;
    min-height: clamp(440px, 46vw, 600px);
    border-radius: var(--gz-radius-lg);
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .22)),
      url("https://gozem.co/wp-content/uploads/2026/07/Ok-open_space_e2_detente-1.webp") center / cover;
    box-shadow: var(--gz-shadow-lg);
  }
  .gz-cw-hero-card {
    position: absolute;
    inset: auto 20px 20px 20px;
    padding: 22px 22px 20px;
    border-radius: var(--gz-radius);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .16);
  }
  .gz-cw-hero-card strong {
    display: block;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 900;
  }
  .gz-cw-hero-card p {
    margin: 10px 0 0;
    color: var(--gz-grey);
    font-size: 14px;
    line-height: 1.55;
  }
  .gz-cw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .gz-cw-pill {
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--gz-green);
    background: var(--gz-tint-strong);
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1;
  }

  /* ---------- OFFRES ---------- */
  .gz-cw-offers {
    padding: var(--gz-section) 0;
    background: var(--gz-bg);
    scroll-margin-top: 90px;
  }
  .gz-cw-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
  }
  .gz-cw-offer-card {
    display: flex;
    flex-direction: column;
    background: var(--gz-surface);
    border: 1px solid var(--gz-border);
    border-radius: var(--gz-radius-lg);
    overflow: hidden;
    box-shadow: var(--gz-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .gz-cw-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gz-shadow-md);
    border-color: var(--gz-green-soft);
  }
  .gz-cw-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gz-tint);
  }

  .gz-cw-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: opacity .6s ease, transform 5.5s ease;
    pointer-events: none;
  }

  .gz-cw-carousel-slide.is-active {
    opacity: 1;
    transform: scale(1.045);
  }

  .gz-cw-carousel-controls {
    position: absolute;
    inset: 50% 12px auto;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .gz-cw-carousel-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(14,33,21,.58);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    font: 900 22px/1 var(--gz-font);
    pointer-events: auto;
    transition: background-color .2s ease, transform .2s ease;
  }

  .gz-cw-carousel-btn:hover {
    background: var(--gz-green);
    transform: scale(1.06);
  }

  .gz-cw-carousel-dots {
    position: absolute;
    z-index: 3;
    inset: auto 0 12px;
    display: flex;
    justify-content: center;
    gap: 7px;
  }

  .gz-cw-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.58);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    cursor: pointer;
    transition: width .2s ease, background-color .2s ease;
  }

  .gz-cw-carousel-dot.is-active {
    width: 24px;
    background: #fff;
  }
  .gz-cw-card-body {
    padding: clamp(22px, 2.4vw, 28px);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .gz-cw-label {
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--gz-green);
    background: var(--gz-tint);
    font-size: 12.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 16px;
  }
  .gz-cw-card-body h3 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 27px);
    line-height: 1.12;
    letter-spacing: -.025em;
    font-weight: 900;
  }
  .gz-cw-card-sub {
    margin: 8px 0 0;
    color: var(--gz-grey);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
  }
  .gz-cw-price-box {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--gz-tint);
    border: 1px solid var(--gz-tint-strong);
  }
  .gz-cw-price-box span {
    display: block;
    color: var(--gz-green);
    font-size: clamp(20px, 2.2vw, 23px);
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 900;
  }
  .gz-cw-price-box small {
    display: block;
    margin-top: 6px;
    color: var(--gz-grey);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
  }
  .gz-cw-list {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
  }
  .gz-cw-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--gz-grey);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .gz-cw-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--gz-green);
    flex: 0 0 auto;
  }
  .gz-cw-card-link {
    margin-top: auto;
    padding-top: 22px;
    color: var(--gz-green);
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    align-self: flex-start;
    transition: transform .25s ease, color .25s ease;
  }
  .gz-cw-offer-card:hover .gz-cw-card-link {
    transform: translateX(3px);
    color: var(--gz-green-dark);
  }

  .gz-cw-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(24px, 3vw, 34px);
  }
  .gz-cw-tab {
    border: 1.5px solid var(--gz-border);
    background: var(--gz-surface);
    color: var(--gz-black);
    border-radius: 999px;
    padding: 11px 20px;
    font: 800 14px/1 var(--gz-font);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .gz-cw-tab:hover {
    border-color: var(--gz-green-soft);
    color: var(--gz-green);
  }
  .gz-cw-tab.is-active {
    background: var(--gz-green);
    border-color: var(--gz-green);
    color: var(--gz-white);
    box-shadow: var(--gz-shadow-sm);
  }

  /* ---------- ESPACES COMMUNS ---------- */
  .gz-cw-common {
    padding: var(--gz-section) 0;
    background: var(--gz-white);
  }
  .gz-cw-common-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gz-cw-common-card {
    display: grid;
    grid-template-rows: clamp(240px, 26vw, 320px) auto;
    border-radius: var(--gz-radius-lg);
    overflow: hidden;
    background: var(--gz-surface);
    border: 1px solid var(--gz-border);
    box-shadow: var(--gz-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .gz-cw-common-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gz-shadow-md);
  }
  .gz-cw-common-img {
    background-size: cover;
    background-position: center;
  }
  .gz-cw-common-body { padding: clamp(26px, 3.4vw, 40px); }
  .gz-cw-common-body h3 {
    margin: 0;
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1.06;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .gz-cw-common-body p {
    margin: 14px 0 0;
    color: var(--gz-grey);
    font-size: 16px;
    line-height: 1.7;
  }
  .gz-cw-common-body .gz-cw-list { margin-top: 18px; }
  .gz-cw-free-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gz-green);
    color: var(--gz-white);
    font-size: 12.5px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 16px;
  }

  /* ---------- SERVICES ---------- */
  .gz-cw-services {
    padding: var(--gz-section) 0;
    background: var(--gz-bg);
  }
  .gz-cw-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  .gz-cw-service-box {
    padding: clamp(24px, 2.6vw, 30px);
    border-radius: var(--gz-radius);
    background: var(--gz-surface);
    border: 1px solid var(--gz-border);
    box-shadow: var(--gz-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .gz-cw-service-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--gz-shadow-md);
    border-color: var(--gz-green-soft);
  }
  .gz-cw-service-box h3 {
    margin: 0 0 16px;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 900;
  }
  .gz-cw-service-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }
  .gz-cw-service-box li {
    color: var(--gz-grey);
    font-size: 14.5px;
    line-height: 1.5;
    display: flex;
    gap: 11px;
    align-items: flex-start;
  }
  .gz-cw-service-box li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--gz-tint);
    color: var(--gz-green);
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 auto;
  }

  /* ---------- LOCALISATION ---------- */
  .gz-cw-location {
    padding: var(--gz-section) 0;
    background: var(--gz-white);
    scroll-margin-top: 90px;
  }
  .gz-cw-location-card {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    border-radius: var(--gz-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gz-border);
    box-shadow: var(--gz-shadow-md);
  }
  .gz-cw-location-copy {
    padding: clamp(30px, 4.5vw, 54px);
    background: var(--gz-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .gz-cw-location-copy h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.05;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .gz-cw-location-copy p {
    margin: 16px 0 0;
    color: var(--gz-grey);
    font-size: 17px;
    line-height: 1.7;
  }
  .gz-cw-map {
    position: relative;
    min-height: 460px;
  }
  .gz-cw-map img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 49% 42%;
    transform: scale(1.06);
    transform-origin: 49% 37%;
  }

  /* ---------- CTA FINAL ---------- */
  .gz-cw-final {
    padding: var(--gz-section) 0;
    background: var(--gz-bg);
  }
  .gz-cw-final-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--gz-radius-lg);
    padding: clamp(34px, 5vw, 64px);
    background:
      radial-gradient(680px 320px at 88% -10%, rgba(255, 255, 255, .16), transparent 60%),
      linear-gradient(135deg, var(--gz-green) 0%, var(--gz-green-dark) 100%);
    color: var(--gz-white);
    box-shadow: var(--gz-shadow-lg);
  }
  .gz-cw-final-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
  }
  .gz-cw-final h2 {
    margin: 0;
    color: var(--gz-white);
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .gz-cw-final p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.65;
    max-width: 640px;
  }
  .gz-cw-final-actions { min-width: 240px; }
  .gz-cw-final-actions .gz-cw-btn {
    width: 100%;
    background: var(--gz-white);
    color: var(--gz-green);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  }
  .gz-cw-final-actions .gz-cw-btn:hover {
    color: var(--gz-green-dark);
    transform: translateY(-2px);
  }


  /* ---------- Icônes des services ---------- */
  .gz-cw-service-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .gz-cw-svc-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--gz-tint);
    color: var(--gz-green);
  }
  .gz-cw-svc-ico svg { width: 22px; height: 22px; }

  /* ---------- Apparition au scroll (activée uniquement si JS) ---------- */
  .gz-cw-page[data-gz-anim] .gz-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .gz-cw-page[data-gz-anim] .gz-reveal.is-in {
    opacity: 1;
    transform: none;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 991px) {
    .gz-cw-facts-grid { grid-template-columns: repeat(2, 1fr); }

    .gz-cw-hero-grid,
    .gz-cw-location-card,
    .gz-cw-final-content { grid-template-columns: 1fr; }

    .gz-cw-common-grid { grid-template-columns: 1fr; }

    .gz-cw-map { min-height: 360px; }

    .gz-cw-final-actions { min-width: 0; }
  }

  @media (max-width: 479px) {
    .gz-cw-facts-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 575px) {
    .gz-cw-hero-actions,
    .gz-cw-final-actions { display: grid; }

    .gz-cw-btn { width: 100%; }

    .gz-cw-hero-card {
      inset: auto 14px 14px 14px;
      padding: 18px;
    }

    .gz-cw-tabs {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 4px;
      scrollbar-width: none;
    }
    .gz-cw-tabs::-webkit-scrollbar { display: none; }
    .gz-cw-tab { flex: 0 0 auto; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gz-cw-page[data-gz-anim] .gz-reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .gz-cw-page *,
    .gz-cw-page *::before,
    .gz-cw-page *::after {
      transition: none !important;
      animation: none !important;
    }
    .gz-cw-offer-card:hover,
    .gz-cw-common-card:hover,
    .gz-cw-service-box:hover,
    .gz-cw-btn:hover,
    .gz-cw-carousel-slide,
    .gz-cw-carousel-btn,
    .gz-cw-carousel-dot,
    .gz-cw-offer-card:hover .gz-cw-card-link { transform: none !important; }
  }

  /* ---------- AMÉLIORATIONS V16 ---------- */

  .gz-cw-hero {
    position: relative;
    isolation: isolate;
  }

  .gz-cw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(115deg, rgba(23,145,56,.055), transparent 44%),
      radial-gradient(600px 220px at 14% 18%, rgba(23,145,56,.08), transparent 70%);
    pointer-events: none;
  }

  .gz-cw-hero h1 {
    max-width: 760px;
  }

  .gz-cw-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 42%, rgba(0,0,0,.18) 100%),
      radial-gradient(420px 260px at 82% 12%, rgba(255,255,255,.20), transparent 68%);
    pointer-events: none;
  }

  .gz-cw-hero-card {
    z-index: 1;
    border: 1px solid rgba(255,255,255,.55);
  }

  .gz-cw-facts {
    position: relative;
    overflow: hidden;
  }

  .gz-cw-facts::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -140px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    pointer-events: none;
  }

  .gz-cw-facts-item {
    min-width: 0;
  }

  .gz-cw-facts-item strong,
  .gz-cw-facts-item span {
    overflow-wrap: anywhere;
  }

  .gz-cw-section-head {
    position: relative;
  }

  .gz-cw-tabs {
    position: sticky;
    top: 12px;
    z-index: 5;
    width: fit-content;
    max-width: 100%;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--gz-border);
    box-shadow: var(--gz-shadow-sm);
  }

  .gz-cw-tab {
    border-color: transparent;
  }

  .gz-cw-offer-card {
    position: relative;
  }

  .gz-cw-offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  }

  .gz-cw-label {
    box-shadow: inset 0 0 0 1px rgba(23,145,56,.06);
  }

  .gz-cw-price-box {
    position: relative;
    overflow: hidden;
  }

  .gz-cw-price-box::after {
    content: "";
    position: absolute;
    width: 86px;
    height: 86px;
    right: -42px;
    top: -48px;
    border-radius: 50%;
    background: rgba(23,145,56,.10);
    pointer-events: none;
  }

  .gz-cw-card-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 40px;
  }

  .gz-cw-common-card {
    position: relative;
  }

  .gz-cw-common-img {
    position: relative;
  }

  .gz-cw-common-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.12));
    pointer-events: none;
  }

  .gz-cw-free-badge {
    box-shadow: 0 10px 24px rgba(23,145,56,.20);
  }

  .gz-cw-service-box {
    min-height: 100%;
  }

  .gz-cw-location-card {
    background: var(--gz-surface);
  }

  .gz-cw-location-copy {
    position: relative;
    overflow: hidden;
  }

  .gz-cw-location-copy::after {
    content: "";
    position: absolute;
    right: -86px;
    bottom: -86px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--gz-tint-strong);
    pointer-events: none;
  }

  .gz-cw-location-copy > * {
    position: relative;
    z-index: 1;
  }

  .gz-cw-map img {
    filter: saturate(.95) contrast(1.02);
  }

  .gz-cw-final-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--gz-radius-lg) - 1px);
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
  }

  @media (max-width: 575px) {
    .gz-cw-tabs {
      position: relative;
      top: auto;
      width: 100%;
      border-radius: 20px;
    }

    .gz-cw-tab {
      padding: 11px 16px;
    }

    .gz-cw-facts-item {
      align-items: flex-start;
    }
  }


  /* ---------- CORRECTIONS V17 : icônes retirées, rendu plus sobre ---------- */

  .gz-cw-facts-grid {
    align-items: stretch;
  }

  .gz-cw-facts-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .gz-cw-facts-item strong {
    font-size: 16px;
  }

  .gz-cw-facts-item span {
    font-size: 13.5px;
  }

  .gz-cw-facts-ico,
  .gz-cw-svc-ico {
    display: none !important;
  }

  .gz-cw-service-box h3 {
    display: block;
  }

  .gz-cw-service-box {
    border-radius: 24px;
  }

  .gz-cw-service-box li::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  @media (max-width: 575px) {
    .gz-cw-facts-item {
      padding: 16px 18px;
    }
  }


  /* ---------- V27 : visuel vedette réception ---------- */

  .gz-cw-reception-highlight {
    padding: 0 0 24px;
    background: var(--gz-white);
  }

  .gz-cw-reception-card {
    position: relative;
    min-height: clamp(340px, 38vw, 480px);
    border-radius: 36px;
    overflow: hidden;
    isolation: isolate;
    background:
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28)),
      url("https://gozem.co/wp-content/uploads/2026/07/OK-accueil3_rdc.png") center 45% / cover no-repeat;
    box-shadow: 0 26px 64px rgba(14,94,36,.16);
  }

  .gz-cw-reception-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(3,36,14,.36) 0%, rgba(3,36,14,.06) 62%, transparent 100%);
  }

  .gz-cw-reception-copy {
    position: absolute;
    inset: auto auto 28px 28px;
    width: min(560px, calc(100% - 56px));
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 26px;
    color: var(--gz-black);
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 48px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .gz-cw-reception-copy span {
    display: block;
    margin-bottom: 10px;
    color: var(--gz-green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  .gz-cw-reception-copy h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1.05;
    letter-spacing: -.03em;
    font-weight: 900;
  }

  .gz-cw-reception-copy p {
    margin: 12px 0 0;
    color: var(--gz-grey);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ---------- Bandeau vert de réassurance ---------- */

  .gz-cw-reassurance {
    padding: 0 0 84px;
    background: var(--gz-white);
  }

  .gz-cw-reassurance-inner {
    border-radius: 36px;
    clip-path: inset(0 round 36px);
    padding: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(255,255,255,.12), transparent 24%),
      linear-gradient(135deg, var(--gz-green) 0%, var(--gz-green-dark) 100%);
    overflow: hidden;
  }

  .gz-cw-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 48px 28px;
  }

  .gz-cw-reassurance-card {
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .gz-cw-reassurance-card strong {
    display: block;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 900;
    margin-bottom: 8px;
  }

  .gz-cw-reassurance-card span {
    display: block;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
  }

  @media (max-width: 1100px) {
    .gz-cw-reassurance-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 800px) {
    .gz-cw-reassurance-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 575px) {
    .gz-cw-reception-card {
      min-height: 500px;
      border-radius: 24px;
    }

    .gz-cw-reception-copy {
      inset: auto 14px 14px;
      width: auto;
      padding: 20px 18px;
      border-radius: 20px;
    }

    .gz-cw-reassurance {
      padding: 0 0 54px;
    }

    .gz-cw-reassurance-grid {
      grid-template-columns: 1fr;
      padding: 18px;
      gap: 14px;
    }

    .gz-cw-reassurance-inner {
      border-radius: 24px;
      clip-path: inset(0 round 24px);
    }

    .gz-cw-reassurance-card {
      padding: 20px 20px;
      border-radius: 20px;
    }

    .gz-cw-reassurance-card strong {
      font-size: 18px;
    }

    .gz-cw-reassurance-card span {
      font-size: 14px;
    }
  }


  /* ==========================================================================
     INTÉGRATION WORDPRESS (V28) — ajouts pour les slides en <img>
     ==========================================================================
     Les slides et les visuels d'espaces communs utilisaient
     style="background-image:url(...)", ce qui interdit srcset, sizes et le
     lazy-loading natif. Le markup porte désormais une vraie balise <img> à
     l'intérieur du même conteneur : les règles de position, d'opacité et de
     transform restent donc appliquées au conteneur, à l'identique.
     Les déclarations background-* d'origine sont conservées plus haut : elles
     servent de repli si un jour un visuel est réinjecté en background.
     ========================================================================== */

  .gz-cw-carousel-slide > img,
  .gz-cw-common-img > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Neutralise les règles img héritées du thème : Bootstrap applique
       `img { margin-bottom: .5rem }`, et le thème un `max-width: 100%`. */
    margin: 0;
    padding: 0;
    max-width: none;
    border: 0;
    border-radius: 0;
  }

  /* La carte de localisation est un lien cliquable vers Google Maps :
     elle doit rester exactement au même endroit que l'ancienne <img>. */
  .gz-cw-map > a {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
  }

  /* Repli lorsqu'une galerie est vide : aucun bloc cassé, un fond discret. */
  .gz-cw-carousel-slide.is-placeholder,
  .gz-cw-common-img.is-placeholder {
    background: var(--gz-tint);
  }

  /* Légende optionnelle d'une photo, reprise de la médiathèque.
     Aucune photo n'ayant de légende aujourd'hui, cet élément n'est pas rendu :
     le visuel reste donc strictement identique à la maquette. */
  .gz-cw-slide-caption {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 10px 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
  }
