/* =================================================================
   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: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cust-hero-bg {
  position: absolute; inset: 0;
}
.cust-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(26,20,16,.78) 0%, rgba(26,20,16,.45) 60%, rgba(26,20,16,.15) 100%);
}
.cust-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  color: #fff;
  text-align: center;
}
.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: 28px 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-num {
  display: block;
  font-weight: 900;
  font-size: 26px;
  color: var(--c-primary);
  letter-spacing: -.02em;
}
.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);
}
.cust-section-alt { background: var(--c-bg-alt); }
.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(260px, 1fr));
  gap: 20px;
}
.cust-service-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .15s, box-shadow .15s;
}
.cust-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(26,20,16,.08);
}
.cust-service-icon {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.cust-service-card h3 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}
.cust-service-card p {
  color: var(--c-muted);
  font-size: 14.5px;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.cust-service-price {
  display: inline-block;
  background: var(--c-bg-alt);
  color: var(--c-primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

/* ====== GALERIE ====== */
.cust-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.cust-gallery-item {
  border-radius: var(--r-md);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(26,20,16,.08);
  overflow: hidden;
}
.cust-gallery-item:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 24px rgba(26,20,16,.18);
}
.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 ====== */
.cust-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cust-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
}
.cust-review-stars {
  color: var(--c-accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.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: 16px;
}
.cust-zone-list li {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--c-text);
  line-height: 1.5;
}
.cust-zone-list strong { color: var(--c-primary); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.cust-zone-map {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  min-height: 340px;
}
iframe.cust-zone-map { display: block; }
@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: 12px;
}
.cust-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 22px;
}
.cust-faq-item summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cust-faq-item summary::-webkit-details-marker { display: none; }
.cust-faq-item summary::after {
  content: '+';
  color: var(--c-primary);
  font-weight: 900;
  font-size: 22px;
  margin-left: 12px;
  flex-shrink: 0;
}
.cust-faq-item[open] summary::after { content: '−'; }
.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;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.cust-social-btn:hover { background: var(--c-primary-dark); transform: translateY(-2px); }

.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); }

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