/* =================================================================
   PIXEL PROS — Page démo
   Site client fictif + système d'annotations toggleables
   ================================================================= */

.demo-page { background: var(--bg); }

/* ====== BANDEAU DÉMO STICKY ====== */
.demo-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink-shadow);
  color: #fff;
  border-bottom: 3px solid var(--yellow);
}
.demo-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.demo-bar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.demo-bar-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: .08em;
  background: var(--yellow);
  color: var(--ink-shadow);
  padding: 6px 10px;
  border-radius: 4px;
}
.demo-bar-text { font-size: 14px; color: rgba(255,255,255,.85); }
.demo-bar-text strong { color: var(--yellow); }
.demo-bar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.demo-bar-toggle {
  background: transparent;
  color: #fff;
  border: 2px solid var(--yellow);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  transition: background .15s, color .15s;
}
.demo-bar-toggle .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fg-muted);
  transition: background .15s;
}
.demo-bar-toggle .label-on { display: none; }
.demo-bar-toggle[aria-pressed="true"] {
  background: var(--yellow);
  color: var(--ink-shadow);
}
.demo-bar-toggle[aria-pressed="true"] .dot { background: var(--green); }
.demo-bar-toggle[aria-pressed="true"] .label-off { display: none; }
.demo-bar-toggle[aria-pressed="true"] .label-on { display: inline; }

.demo-bar-back {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.demo-bar-back:hover { color: var(--yellow); }

/* ====== ANNOTATIONS ====== */

.annot {
  display: block;
  position: absolute;
  z-index: 40;
  font-family: 'Inter', sans-serif;
}
.cust-hero, .cust-section, .cust-header, .cust-trust { position: relative; }
.annot-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink-shadow);
  border: 3px solid var(--ink-shadow);
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  box-shadow: 3px 3px 0 var(--ink-shadow);
  animation: annot-pulse 2.4s ease-in-out infinite;
}
@keyframes annot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.annot-bubble {
  display: block;
  background: var(--bg-elev);
  color: var(--fg);
  border: 2.5px solid var(--ink-shadow);
  border-radius: var(--r-md);
  box-shadow: 4px 4px 0 var(--ink-shadow);
  padding: 11px 13px;
  font-size: 12px;
  line-height: 1.45;
  width: 190px;
  margin-top: 10px;
}
.annot-bubble strong { display: block; margin-bottom: 4px; color: var(--blue); font-size: 13px; }

/* Positionnement par annotation
   - Pins poussés dans les marges externes au max
   - Décalages verticaux pour éviter les chevauchements entre sections adjacentes */
.annot-top      { top: 92px;  right: 16px; }   /* sous le header, n'empiète plus sur le menu nav */
/* annot-hero : sortie du hero pour ne pas perturber le flex centré (cf. .annot-after-hero) */
.annot-after-hero { display: flex; justify-content: center; margin-top: 18px; }
.annot-trust    { top: 8px;   right: 10px; }
.annot-about    { top: 10px;  left: 10px; }
.annot-services { top: 10px;  right: 10px; }
.annot-gallery  { top: 10px;  left: 10px; }
.annot-reviews  { top: 10px;  right: 10px; }
.annot-zone     { top: 10px;  left: 10px; }
.annot-faq      { top: 10px;  right: 10px; }
.annot-contact  { top: 10px;  left: 10px; }

/* Le data-side positionne la bulle, le texte reste toujours aligné à gauche pour lisibilité */
.annot { text-align: left; }
.annot-bubble { text-align: left; }
.annot-bubble strong { text-align: left; }
.annot[data-side="right"] .annot-bubble { margin-left: auto; }

/* Sur sections avec h2 centré, le coin haut est libre et n'empiète pas sur le titre.
   Sur écran moyen, on resserre encore plus */
@media (max-width: 1240px) {
  .annot-top { top: 70px; right: 18px; }  /* sous le header pour éviter chevauchement bouton */
}

/* Bulles toujours en statique sous chaque section : on ne touche jamais à la structure du site démo */
.annot {
  position: static !important;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 20px auto 0;
  max-width: 760px;
  padding: 0 20px;
}
.annot-pin { box-shadow: 2px 2px 0 var(--ink-shadow); flex-shrink: 0; }
.annot-bubble { width: auto; max-width: 100%; margin-top: 0; }
.annot[data-side="right"] .annot-bubble { margin-left: 0; }

/* =================================================================
   SITE CLIENT — Le Comptoir d'Auguste
   ================================================================= */

/* Variables propres au site client (chaud, ambré, brun) */
.demo-page {
  --c-primary: #c0392b;       /* rouge bordeaux du comptoir */
  --c-primary-dark: #8e2a20;
  --c-accent: #e9b949;        /* doré */
  --c-text: #1a1410;
  --c-muted: #6b5d50;
  --c-bg: #fbf6ee;
  --c-bg-alt: #f3ead9;
  --c-line: #e5dac5;
  --c-card: #ffffff;
}

/* ====== HEADER CLIENT ====== */
.cust-header {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-line);
}
.cust-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cust-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-text);
}
.cust-logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  border: 2px solid var(--c-text);
}
.cust-logo-text strong {
  display: block;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
}
.cust-logo-text em {
  font-style: normal;
  font-size: 12px;
  color: var(--c-muted);
}
.cust-nav { display: flex; gap: 24px; }
.cust-nav a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.cust-nav a:hover { border-bottom-color: var(--c-primary); color: var(--c-primary); }
.cust-cta {
  background: var(--c-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .15s, transform .15s;
}
.cust-cta:hover { background: var(--c-primary-dark); transform: translateY(-1px); }

@media (max-width: 820px) {
  .cust-nav { order: 3; width: 100%; justify-content: center; gap: 16px; }
}

/* ====== PLACEHOLDERS PHOTO ====== */
.cust-img {
  background:
    linear-gradient(135deg, rgba(192,57,43,.92), rgba(233,185,73,.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cust-img::after {
  content: attr(data-img-label);
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 4px 8px;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.85);
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: .06em;
  border-radius: 4px;
  pointer-events: none;
}
/* Pas de label sur le hero plein écran (pollue le titre) */
.cust-hero-bg::after { display: none; }

/* ====== HERO CLIENT ====== */
.cust-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cust-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation:
    cust-hero-fade 14s ease-in-out infinite,
    cust-hero-zoom 7s ease-out infinite;
  will-change: opacity, transform;
}
/* La 2ème image démarre à mi-cycle pour faire le fondu croisé */
.cust-hero-bg-2 { animation-delay: 7s; }

@keyframes cust-hero-fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  45%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes cust-hero-zoom {
  from { transform: scale(1.10); }
  to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .cust-hero-bg { animation: none; opacity: 1; transform: none; }
  .cust-hero-bg-2 { opacity: 0; }
}
.cust-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(192,57,43,.18) 0%, transparent 55%),
    linear-gradient(120deg, rgba(26,20,16,.86) 0%, rgba(26,20,16,.55) 55%, rgba(26,20,16,.20) 100%);
}
.cust-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  color: #fff;
  text-align: center;
}
.cust-hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: cust-hero-rise .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.cust-hero-content > *:nth-child(1) { animation-delay: .15s; }
.cust-hero-content > *:nth-child(2) { animation-delay: .35s; }
.cust-hero-content > *:nth-child(3) { animation-delay: .55s; }
.cust-hero-content > *:nth-child(4) { animation-delay: .75s; }
@keyframes cust-hero-rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .cust-hero-bg { animation: none; transform: none; }
  .cust-hero-content > * { animation: none; opacity: 1; transform: none; }
}

/* Petit indicateur "descend pour voir la suite" en bas du hero */
/* Indicateur "DECOUVRIR ↓" en bas du hero. Sur mobile, le hero est
   plus compact et l'indicateur tombe pile sur les boutons CTA → on le
   cache, il n'apporte rien (le swipe ↓ est déjà naturel au mobile). */
@media (max-width: 720px) {
  .cust-hero-scroll { display: none; }
}
.cust-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.78);
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: .12em;
  z-index: 2;
  pointer-events: none;
  animation: cust-hero-scroll-fade 1.2s ease-out .9s both;
}
.cust-hero-scroll-arrow {
  width: 2px;
  height: 26px;
  background: rgba(255,255,255,.55);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.cust-hero-scroll-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-accent);
  transform: translateY(-100%);
  animation: cust-hero-scroll-bar 1.8s ease-in-out infinite;
}
@keyframes cust-hero-scroll-fade {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes cust-hero-scroll-bar {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}
.cust-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.cust-hero-content h1 {
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.cust-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  max-width: 540px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.cust-hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cust-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform .12s, background .15s;
}
.cust-btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.cust-btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); }
.cust-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cust-btn-ghost:hover { background: #fff; color: var(--c-text); }
.cust-btn-full { width: 100%; justify-content: center; }

/* ====== BANDEAU CONFIANCE ====== */
.cust-trust {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
  padding: 32px 0;
}
.cust-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.cust-trust-item {
  position: relative;
  padding: 6px 12px;
}
.cust-trust-item + .cust-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56%;
  background: linear-gradient(to bottom, transparent, var(--c-line), transparent);
}
.cust-trust-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  font-size: 14px;
  margin-bottom: 6px;
}
.cust-trust-num {
  display: block;
  font-weight: 900;
  font-size: 28px;
  color: var(--c-primary);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.cust-trust-lbl {
  display: block;
  font-size: 13.5px;
  color: var(--c-muted);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .cust-trust-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ====== SECTIONS GÉNÉRIQUES ====== */
.cust-section {
  padding: 88px 0;
  background: var(--c-bg);
  color: var(--c-text);
  isolation: isolate;
}
.cust-section-alt { background: var(--c-bg-alt); }

/* Calque image de fond ultra-discret en lien avec le métier du client.
   Activé en ajoutant style="--section-bg: url('...')" sur la section. */
.cust-section[style*='--section-bg']::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--section-bg-opacity, .035);
  filter: grayscale(.55) contrast(.95);
  pointer-events: none;
  z-index: 0;
}
.cust-section > * { position: relative; z-index: 1; }
.cust-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.cust-section-head { text-align: center; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cust-section-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--c-primary);
  display: inline-block;
  margin-bottom: 14px;
}
.cust-section h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.cust-section-head p {
  color: var(--c-muted);
  font-size: 16.5px;
  text-wrap: pretty;
}

/* ====== À PROPOS ====== */
.cust-about {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}
.cust-about-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
}
.cust-about-text h2 { margin-bottom: 22px; }
.cust-about-text p {
  font-size: 16.5px;
  color: var(--c-text);
  margin-bottom: 16px;
  text-wrap: pretty;
}
@media (max-width: 820px) {
  .cust-about { grid-template-columns: 1fr; gap: 32px; }
  .cust-about-img { aspect-ratio: 4/3; max-height: 360px; }
}

/* ====== SERVICES ====== */
.cust-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cust-service-card {
  position: relative;
  background: var(--c-card);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* Numéro 01/02… en filigrane gros et discret en haut à droite */
.cust-service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--c-primary);
  opacity: .08;
  letter-spacing: -.03em;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  line-height: 1;
}
/* Liseré coloré qui apparaît à gauche au hover */
.cust-service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--c-primary), var(--c-accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.cust-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(26,20,16,.12);
  border-color: color-mix(in srgb, var(--c-primary) 35%, var(--c-line));
}
.cust-service-card:hover::before { opacity: .14; transform: scale(1.06); }
.cust-service-card:hover::after  { transform: scaleY(1); }

/* Icône SVG dans un carré coloré, en haut à gauche */
.cust-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  margin-bottom: 22px;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.cust-service-icon svg { width: 26px; height: 26px; display: block; }
.cust-service-card:hover .cust-service-icon {
  background: var(--c-primary);
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

.cust-service-card h3 {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  color: var(--c-text);
  text-wrap: balance;
}
.cust-service-card p {
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 22px;
  text-wrap: pretty;
  flex: 1; /* pousse le prix tout en bas */
}

/* Prix en bas, plus impactant : trait + label + chiffre typé */
.cust-service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--c-line);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-primary);
  letter-spacing: -.01em;
  line-height: 1;
}
.cust-service-price::before {
  content: 'À PARTIR DE';
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: .12em;
  align-self: center;
}
/* Variante "sur devis" / "au verre dès…" — texte plus court, on retire le label */
.cust-service-price[data-format="raw"]::before { content: none; }
.cust-service-price[data-format="raw"] { font-size: 17px; }

/* Variante mise en avant (signature du restaurateur) */
.cust-service-card.is-featured {
  border-color: var(--c-primary);
  background: linear-gradient(165deg, var(--c-card) 0%, color-mix(in srgb, var(--c-accent) 14%, var(--c-card)) 100%);
}
.cust-service-card.is-featured::after { transform: scaleY(1); }
.cust-service-card.is-featured .cust-service-icon {
  background: var(--c-primary);
  color: #fff;
}
.cust-service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-primary);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: .1em;
  padding: 5px 9px;
  border-radius: 999px;
  z-index: 1;
  box-shadow: 2px 2px 0 var(--c-text);
}
.cust-service-card.is-featured::before { display: none; }

/* ====== GALERIE ====== */
.cust-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense; /* remplit les trous laissés par les span */
  gap: 14px;
}
.cust-gallery-item {
  position: relative;
  border-radius: var(--r-md);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
  box-shadow: 0 4px 12px rgba(26,20,16,.08);
  overflow: hidden;
  cursor: zoom-in;
  background-size: cover;
  background-position: center;
}
/* Voile coloré dégradé qui apparaît au survol */
.cust-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.45) 0%, rgba(26,20,16,.70) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
/* Label "Agrandir" centré */
.cust-gallery-item::after {
  content: '⌕ Agrandir';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.82);
  background: #fff;
  color: var(--c-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--c-text);
  box-shadow: 3px 3px 0 var(--c-text);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1.3);
  z-index: 2;
  pointer-events: none;
}
.cust-gallery-item:hover {
  transform: scale(1.035);
  z-index: 3;
  box-shadow: 0 22px 44px rgba(26,20,16,.30);
}
.cust-gallery-item:hover::before { opacity: 1; }
.cust-gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =================================================================
   LIGHTBOX — agrandissement au clic
   ================================================================= */
.cust-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11,8,5,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  transition: opacity .25s ease;
}
.cust-lightbox.is-show { opacity: 1; }

.cust-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  transform: scale(.94);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
  background: #1a1410;
}
.cust-lightbox.is-show .cust-lightbox-img { transform: scale(1); }
.cust-lightbox.is-loading .cust-lightbox-img { opacity: .35; }

.cust-lightbox-close,
.cust-lightbox-prev,
.cust-lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,.32);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, color .15s ease;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.cust-lightbox-close { top: 24px; right: 24px; }
.cust-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.cust-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.cust-lightbox-close:hover,
.cust-lightbox-prev:hover,
.cust-lightbox-next:hover {
  background: var(--c-accent);
  color: var(--c-text);
  border-color: var(--c-accent);
}
.cust-lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.cust-lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

.cust-lightbox-counter {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.75);
  letter-spacing: .1em;
  padding: 8px 14px;
  background: rgba(0,0,0,.4);
  border-radius: 999px;
}

@media (max-width: 640px) {
  .cust-lightbox { padding: 70px 16px; }
  .cust-lightbox-close,
  .cust-lightbox-prev,
  .cust-lightbox-next { width: 40px; height: 40px; font-size: 18px; }
  .cust-lightbox-close { top: 14px; right: 14px; }
  .cust-lightbox-prev { left: 10px; }
  .cust-lightbox-next { right: 10px; }
  .cust-lightbox-counter { top: 16px; font-size: 9px; padding: 6px 10px; }
}
.cust-gallery-tall { grid-row: span 2; }
.cust-gallery-wide { grid-column: span 2; }
@media (max-width: 820px) {
  .cust-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .cust-gallery-wide { grid-column: span 2; }
  .cust-gallery-tall { grid-row: span 1; }
}

/* ====== AVIS (carrousel : 3 visibles, défilement par flèches) ====== */
/* On réserve un padding horizontal sur le wrap pour loger les flèches
   à l'extérieur des cards, jamais par-dessus. */
.cust-reviews-wrap {
  position: relative;
  padding: 0 64px;
}
.cust-reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 18px 4px 28px;
  scrollbar-width: none;
  /* Petit fondu sur les bords pour qu'une carte qui sort/entre ne soit pas tranchée nette */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.cust-reviews::-webkit-scrollbar { display: none; }

.cust-reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-card);
  color: var(--c-text);
  border: 2px solid var(--c-text);
  box-shadow: 4px 4px 0 var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}
.cust-reviews-arrow:hover {
  background: var(--c-accent);
  transform: translateY(-50%) translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-text);
}
.cust-reviews-arrow:active {
  transform: translateY(-50%) translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--c-accent);
}
.cust-reviews-arrow:disabled {
  /* Quand on est en bout de course (début ou fin du carrousel), la flèche
     correspondante disparaît complètement → l'utilisateur voit
     immédiatement dans quel sens il peut encore défiler.
     visibility (pas display) pour éviter tout layout shift et garder
     les positions absolues stables. */
  visibility: hidden;
  pointer-events: none;
}
.cust-reviews-prev { left: 6px; }
.cust-reviews-next { right: 6px; }

@media (max-width: 980px) {
  .cust-reviews-wrap { padding: 0 54px; }
  .cust-reviews { grid-auto-columns: calc((100% - 22px) / 2); }
}
@media (max-width: 640px) {
  .cust-reviews-wrap { padding: 0 48px; }
  .cust-reviews { grid-auto-columns: 100%; }
  .cust-reviews-arrow { width: 40px; height: 40px; font-size: 22px; }
  .cust-reviews-prev { left: 2px; }
  .cust-reviews-next { right: 2px; }
}

.cust-review-card {
  scroll-snap-align: start;
  background: var(--c-card);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 34px 28px 26px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 6px 14px rgba(26,20,16,.05);
}
.cust-review-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--c-primary) 25%, var(--c-line));
  box-shadow: 0 18px 32px rgba(26,20,16,.10), 0 0 0 0 var(--c-accent);
}
.cust-review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: 'Georgia', serif;
  font-size: 84px;
  line-height: 1;
  color: var(--c-primary);
  opacity: .18;
  pointer-events: none;
}
.cust-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cust-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--avatar-bg, var(--c-primary));
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(26,20,16,.12);
}
.cust-review-meta { flex: 1; min-width: 0; }
.cust-review-stars {
  color: var(--c-accent);
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.cust-review-source {
  font-size: 11.5px;
  color: var(--c-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cust-review-source::before {
  content: 'G';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 0;
}
.cust-review-text {
  font-size: 15.5px;
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.cust-review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-muted);
}

/* ====== ZONE / OÙ ====== */
.cust-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.cust-zone-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.cust-zone-list li {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14.5px;
  color: var(--c-text);
  line-height: 1.5;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.cust-zone-list li:hover {
  border-color: color-mix(in srgb, var(--c-primary) 35%, var(--c-line));
  transform: translateX(2px);
  box-shadow: 0 6px 16px rgba(26,20,16,.06);
}
.cust-zone-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cust-zone-ico svg { width: 22px; height: 22px; }
.cust-zone-row { display: grid; gap: 2px; min-width: 0; }
.cust-zone-row strong {
  color: var(--c-primary);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.cust-zone-row span { font-size: 14.5px; color: var(--c-text); font-weight: 600; }

.cust-zone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 22px;
  background: var(--c-text);
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  border-radius: var(--r-md);
  border: 2px solid var(--c-text);
  box-shadow: 4px 4px 0 var(--c-accent);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.cust-zone-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-accent);
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.cust-zone-cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--c-accent); }
.cust-zone-cta span { font-size: 16px; line-height: 1; }

/* Cadre carte avec ombre style pixel-art + badge "ville" */
.cust-zone-map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  border: 2px solid var(--c-text);
  box-shadow: 8px 8px 0 var(--c-accent);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.cust-zone-map {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
  display: block;
  min-height: 340px;
  border: 0;
}
iframe.cust-zone-map { display: block; }
.cust-zone-map-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 9px;
  background: var(--c-primary);
  color: #fff;
  border: 2px solid var(--c-text);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .02em;
  box-shadow: 2px 2px 0 var(--c-text);
  pointer-events: none;
}
.cust-zone-map-badge-pin {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.cust-zone-map-badge-pin svg { width: 16px; height: 16px; }
@media (max-width: 820px) {
  .cust-zone { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

/* ====== FAQ ====== */
.cust-faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  counter-reset: cust-faq;
}
.cust-faq-item {
  background: var(--c-card);
  border: 2px solid var(--c-text);
  border-radius: var(--r-md);
  padding: 18px 22px 18px 70px;
  position: relative;
  box-shadow: 4px 4px 0 var(--c-text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  counter-increment: cust-faq;
}
.cust-faq-item::before {
  content: 'Q' counter(cust-faq);
  position: absolute;
  left: 14px;
  top: 16px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  color: var(--c-text);
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  border: 2px solid var(--c-text);
  border-radius: 8px;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.cust-faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-text);
  border-color: var(--c-primary);
}
.cust-faq-item[open] {
  border-color: var(--c-primary);
  box-shadow: 4px 4px 0 var(--c-primary);
}
.cust-faq-item[open]::before {
  background: var(--c-primary);
  color: #fff;
}
.cust-faq-item summary {
  font-weight: 800;
  font-size: 16px;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cust-faq-item summary::-webkit-details-marker { display: none; }
.cust-faq-item[open] summary { color: var(--c-primary); }
.cust-faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-primary) 10%, transparent);
  color: var(--c-primary);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  margin-left: 12px;
  flex-shrink: 0;
  transition: background .2s ease, transform .25s ease;
}
.cust-faq-item:hover summary::after { background: color-mix(in srgb, var(--c-primary) 18%, transparent); }
.cust-faq-item[open] summary::after { content: '−'; background: var(--c-primary); color: #fff; transform: rotate(180deg); }
.cust-faq-item { transition: border-color .15s ease, box-shadow .15s ease; }
.cust-faq-item:hover { border-color: color-mix(in srgb, var(--c-primary) 25%, var(--c-line)); }
.cust-faq-item[open] { box-shadow: 0 6px 14px rgba(26,20,16,.06); }
.cust-faq-item p {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ====== CONTACT ====== */
.cust-contact {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
}
.cust-contact-info h2 { margin-bottom: 14px; }
.cust-contact-info > p { color: var(--c-muted); margin-bottom: 26px; }
.cust-contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.cust-contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 15px;
}
.cust-contact-list strong { color: var(--c-primary); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.cust-contact-list a { color: var(--c-text); text-decoration: underline; }

.cust-contact-hours-title {
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.cust-contact-hours {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 4px;
  margin-bottom: 26px;
}
.cust-contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14.5px;
}
.cust-contact-hours li:last-child { border-bottom: none; }
.cust-contact-hours span:first-child { color: var(--c-muted); font-weight: 600; }
.cust-contact-hours span:last-child { font-weight: 700; }

.cust-social { display: flex; gap: 10px; }
.cust-social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(26,20,16,.10);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.cust-social-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  display: block;
}
.cust-social-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(26,20,16,.18); filter: brightness(1.05); }
/* Couleurs officielles par réseau */
.cust-social-ig { background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%); }
.cust-social-fb { background: #1877F2; }
.cust-social-ta { background: #00AF87; }

.cust-form {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px;
  display: grid;
  gap: 16px;
  align-self: start;
}
.cust-field label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--c-text);
}
.cust-field input,
.cust-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--c-bg);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .15s;
}
.cust-field input:focus,
.cust-field textarea:focus { border-color: var(--c-primary); }
.cust-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.cust-form-legal {
  font-size: 12.5px;
  color: var(--c-muted);
  text-align: center;
}
@media (max-width: 820px) {
  .cust-contact { grid-template-columns: 1fr; gap: 36px; }
  .cust-contact-list li { grid-template-columns: 1fr; gap: 2px; }
}

/* ====== FOOTER CLIENT ====== */
.cust-footer {
  background: var(--c-text);
  color: rgba(255,255,255,.7);
  padding: 36px 0;
}
.cust-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  font-size: 13.5px;
}
.cust-footer-brand strong { display: block; color: #fff; font-size: 15px; }
.cust-footer-links { display: flex; gap: 18px; justify-content: center; }
.cust-footer-links a { color: rgba(255,255,255,.7); text-decoration: none; }
.cust-footer-links a:hover { color: var(--c-accent); }
.cust-footer-copy { text-align: right; }
.cust-footer-copy a { color: var(--c-accent); text-decoration: none; font-weight: 700; }
@media (max-width: 720px) {
  .cust-footer-inner { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .cust-footer-links { justify-content: center; }
  .cust-footer-copy { text-align: center; }
}

/* =================================================================
   BANDEAU CTA FINAL (revient à Pixel Pros)
   ================================================================= */
.demo-final {
  background: var(--ink-shadow);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.demo-final-inner { max-width: 720px; margin: 0 auto; }
.demo-final-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.demo-final h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.demo-final h2 .yellow { color: var(--yellow); }
.demo-final p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  margin-bottom: 30px;
  text-wrap: pretty;
}
.demo-final-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.demo-final-note { font-size: 13px; color: rgba(255,255,255,.5); }
/* Bouton secondaire visible sur fond sombre */
.demo-final .btn-secondary {
  color: #fff;
  border-color: #fff;
}
.demo-final .btn-secondary:hover { background: #fff; color: var(--ink-shadow); }

/* =================================================================
   APPARITIONS AU SCROLL
   Les sections se révèlent en douceur quand elles entrent dans l'écran.
   Activé par JS (ajout de la classe .is-in-view).
   ================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
[data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =================================================================
   CONTACT — affinage visuel
   ================================================================= */
.cust-contact-list li strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cust-contact-list li a:hover { color: var(--c-primary); }
.cust-form { box-shadow: 0 14px 32px rgba(26,20,16,.06); }
.cust-field input,
.cust-field textarea {
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.cust-field input:focus,
.cust-field textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-primary) 18%, transparent);
}

/* Bouton "Envoyer" plus présent */
.cust-btn-primary { box-shadow: 0 8px 18px color-mix(in srgb, var(--c-primary) 35%, transparent); }
.cust-btn-primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px color-mix(in srgb, var(--c-primary) 45%, transparent);
}

/* =================================================================
   FOOTER — enrichi (mini-horaires, signature)
   ================================================================= */
.cust-footer { padding: 44px 0 30px; }
.cust-footer-inner { gap: 32px; }
.cust-footer-brand em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.cust-footer-hours {
  display: grid;
  gap: 2px;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
}
.cust-footer-hours strong { color: var(--c-accent); display: block; margin-bottom: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.cust-footer-hours-row { display: flex; justify-content: space-between; gap: 12px; }
.cust-footer-hours-row span:last-child { color: rgba(255,255,255,.85); font-weight: 600; }

/* =================================================================
   RESPONSIVE MOBILE — site démo
   ================================================================= */

@media (max-width: 640px) {
  /* Bandeau démo mobile relooké : plus vivant */
  .demo-bar {
    background:
      linear-gradient(135deg, rgba(14,165,255,.18), rgba(250,204,21,.10) 50%, rgba(34,197,94,.18)),
      var(--ink-shadow);
    border-bottom-width: 4px;
    box-shadow: 0 4px 0 rgba(250,204,21,.35), inset 0 -1px 0 rgba(255,255,255,.06);
  }
  .demo-bar-inner { padding: 12px 14px; gap: 10px; flex-wrap: wrap; }
  .demo-bar-tag {
    font-size: 9px;
    padding: 7px 11px;
    background: var(--yellow);
    color: var(--ink-shadow);
    border: 2px solid var(--ink-shadow);
    box-shadow: 2px 2px 0 var(--ink-shadow);
    transform: rotate(-2deg);
    animation: demo-tag-pulse 2.4s ease-in-out infinite;
  }
  @keyframes demo-tag-pulse {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50%      { transform: rotate(-2deg) scale(1.06); }
  }
  .demo-bar-text {
    font-size: 12.5px;
    line-height: 1.4;
    color: rgba(255,255,255,.95);
  }
  .demo-bar-text strong { color: var(--yellow); }
  .demo-bar-back {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
  }
  .demo-bar-back:hover { background: var(--yellow); color: var(--ink-shadow); border-color: var(--yellow); }

  .cust-header-inner { padding: 14px 18px; gap: 12px; }
  .cust-logo-mark { width: 38px; height: 38px; font-size: 15px; }
  .cust-logo-text strong { font-size: 15px; }
  .cust-logo-text em { font-size: 11px; }
  .cust-cta { padding: 8px 14px; font-size: 13px; }

  .cust-hero { min-height: 420px; }
  .cust-hero-content { padding: 60px 22px; }
  .cust-hero-content h1 { font-size: clamp(28px, 8vw, 40px); }
  .cust-hero-content p { font-size: 15px; }
  .cust-btn { font-size: 13px; padding: 12px 18px; }

  .cust-trust { padding: 20px 0; }
  .cust-trust-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 18px; }
  .cust-trust-num { font-size: 20px; }
  .cust-trust-lbl { font-size: 11px; }

  .cust-section { padding: 56px 0; }
  .cust-container { padding: 0 18px; }
  .cust-section h2 { font-size: clamp(22px, 6vw, 32px); }
  .cust-section-head { margin-bottom: 32px; }

  .cust-about { gap: 22px; }
  .cust-about-text p { font-size: 15px; }

  .cust-services { gap: 14px; }
  .cust-service-card { padding: 22px 18px; }
  .cust-service-card h3 { font-size: 16px; }

  .cust-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 8px; }
  .cust-gallery-wide { grid-column: span 2; }
  .cust-gallery-tall { grid-row: span 1; }

  .cust-reviews { gap: 14px; }
  .cust-review-card { padding: 20px 18px; }

  .cust-zone { gap: 22px; }
  .cust-zone-list li { padding: 12px 14px; font-size: 13.5px; }
  .cust-zone-map { min-height: 240px; aspect-ratio: 4/3; }

  .cust-faq-item { padding: 14px 16px 14px 56px; }
  .cust-faq-item::before { width: 32px; height: 32px; font-size: 10px; top: 12px; left: 12px; }
  .cust-faq-item summary { font-size: 14.5px; }

  .cust-contact { gap: 24px; }
  .cust-contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .cust-form { padding: 22px 18px; }

  .annot { padding: 0 18px; }
  .annot-bubble { padding: 10px 12px; font-size: 12.5px; }

  .demo-final { padding: 50px 18px; }
  .demo-final h2 { font-size: clamp(24px, 6vw, 32px); }
  .demo-final-cta { gap: 10px; }
}
