/* =========================================================
   MSG Barbershop — Ngaparou / Saly
   ========================================================= */

:root {
  --bg: #070708;
  --bg-2: #101014;
  --bg-3: #18181f;
  --surface: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f3f5;
  --muted: #a0a0ab;
  --red: #d41228;
  --blue: #1f5bff;
  --silver: #d7d7de;
  --whatsapp: #25d366;
  --waze: #33ccff;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --max: 1140px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- NAV ---------- */
.site-nav {
  min-height: var(--nav-h);
  background: rgba(7, 7, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  padding-block: .55rem;
}
.site-nav.is-scrolled {
  background: rgba(7, 7, 8, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}
.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.15);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .08em;
  line-height: 1;
}
.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-size: .78em;
  letter-spacing: .18em;
  margin-left: .15rem;
}
.site-nav .nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted) !important;
  padding: .55rem .8rem !important;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus { color: #fff !important; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- BUTTONS ---------- */
.btn {
  --bs-btn-border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: .03em;
  padding: .85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary-brand {
  background: linear-gradient(135deg, var(--red), #9e0d1e);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(212, 18, 40, .28);
}
.btn-primary-brand:hover {
  background: linear-gradient(135deg, #ef1831, var(--red));
  color: #fff !important;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #04150a !important;
}
.btn-whatsapp:hover {
  background: #2fe476;
  color: #04150a !important;
}

.btn-nav-google {
  background: rgba(31, 91, 255, .15);
  border-color: rgba(31, 91, 255, .55);
  color: #fff !important;
}
.btn-nav-google:hover {
  background: rgba(31, 91, 255, .28);
  border-color: var(--blue);
  color: #fff !important;
}

.btn-nav-waze {
  background: rgba(51, 204, 255, .12);
  border-color: rgba(51, 204, 255, .5);
  color: #fff !important;
}
.btn-nav-waze:hover {
  background: rgba(51, 204, 255, .22);
  border-color: var(--waze);
  color: #fff !important;
}

.btn-outline-light-soft {
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color: #fff !important;
}
.btn-outline-light-soft:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.45);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 55% at 50% 15%, rgba(212, 18, 40, .18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 85%, rgba(31, 91, 255, .16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(212, 18, 40, .08), transparent 45%),
    linear-gradient(180deg, #0c0c10 0%, var(--bg) 55%, #050506 100%);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 55vmax;
  height: 18vmax;
  pointer-events: none;
  opacity: .55;
  filter: blur(.5px);
}
.hero-bg::before {
  top: -8%;
  left: -12%;
  background: linear-gradient(115deg, transparent 20%, rgba(212,18,40,.55) 48%, transparent 72%);
  transform: rotate(-18deg);
  animation: streak 9s ease-in-out infinite alternate;
}
.hero-bg::after {
  bottom: -5%;
  right: -15%;
  background: linear-gradient(115deg, transparent 20%, rgba(31,91,255,.5) 48%, transparent 72%);
  transform: rotate(-18deg);
  animation: streak 11s ease-in-out infinite alternate-reverse;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: .5;
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
}
.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero-content > picture {
  display: block;
  margin: 0 auto 1.25rem;
}
.hero-logo {
  width: clamp(120px, 22vw, 180px);
  height: clamp(120px, 22vw, 180px);
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.12),
    0 0 0 6px rgba(212,18,40,.18),
    0 0 0 10px rgba(31,91,255,.12),
    0 25px 60px rgba(0,0,0,.55);
  animation: logoIn .9s ease both;
}
.hero-brand {
  margin: 0 0 .65rem;
  line-height: .92;
}
.brand-msg {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12vw, 6.5rem);
  letter-spacing: .04em;
}
.brand-msg .m { color: var(--silver); }
.brand-msg .s { color: var(--red); }
.brand-msg .g { color: var(--blue); }
.brand-shop {
  display: block;
  margin-top: .15rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.2vw, 2.1rem);
  letter-spacing: .42em;
  color: #fff;
  padding-left: .42em;
}
.hero-headline {
  margin: 0 0 .55rem;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 600;
  color: #fff;
}
.hero-lead {
  margin: 0 auto 1.6rem;
  max-width: 28ch;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-values {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: .28em;
  font-size: .95rem;
  color: var(--silver);
  padding-left: .28em;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  opacity: .75;
}
.hero-scroll:hover { color: #fff; opacity: 1; }

@keyframes logoIn {
  from { opacity: 0; transform: scale(.88) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes streak {
  from { opacity: .35; }
  to { opacity: .7; }
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.section-eyebrow {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  letter-spacing: .28em;
  font-size: .95rem;
  color: var(--red);
  padding-left: .28em;
}
.section-head h2,
.section-about h2 {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: .06em;
  line-height: 1;
}
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- SERVICES ---------- */
.section-services {
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.015)),
    var(--bg);
}
.service-item {
  height: 100%;
  padding: 1.6rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--blue)) 1;
  transition: background .35s ease, border-color .35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .service-item {
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), background .35s ease, border-color .35s ease;
  }
  .service-item:hover {
    transform: translateY(-2px);
  }
}
.service-item:hover {
  background: rgba(255,255,255,.05);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(212, 18, 40, .55);
  clip-path: polygon(25% 4%, 75% 4%, 96% 50%, 75% 96%, 25% 96%, 4% 50%);
  background: rgba(212, 18, 40, .08);
  color: #fff;
  font-size: 1.15rem;
}
.service-item h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.products-banner {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(105deg, rgba(212,18,40,.12), rgba(31,91,255,.12));
  border: 1px solid var(--line);
}
.products-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 1.25rem;
  color: var(--silver);
}
.products-banner h3 {
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  letter-spacing: .08em;
}
.products-banner p { color: var(--muted); font-size: .95rem; }

/* ---------- ABOUT ---------- */
.section-about {
  background: var(--bg-2);
}
.about-visual {
  display: grid;
  place-items: center;
}
.about-visual-inner {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(212,18,40,.2), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(31,91,255,.22), transparent 45%),
    var(--bg-3);
  border: 1px solid var(--line);
}
.about-visual-inner::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255,255,255,.12);
}
.about-visual-inner img {
  width: 58%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}
.about-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
}
.about-text strong { color: #fff; font-weight: 600; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .7rem;
  color: var(--text);
  font-weight: 500;
}
.about-points i {
  color: var(--red);
  margin-top: .2rem;
}

/* ---------- GALLERY ---------- */
.gallery-ph {
  margin: 0;
  height: 100%;
}
.gallery-ph-inner {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  transition: border-color .4s ease, box-shadow .45s ease;
}
.gallery-ph-inner .lazy-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}
.gallery-ph-inner picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-ph-inner picture,
.gallery-ph-inner .lazy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-ph-inner .lazy-img {
  opacity: 0;
  transform: none;
  transition: opacity .5s ease;
}
.gallery-ph-inner .lazy-img.is-visible,
.gallery-ph-inner .is-loaded .lazy-img {
  opacity: 1;
  transform: none;
}
.gallery-ph-inner:hover {
  border-color: rgba(212, 18, 40, .45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-ph-inner {
    transition: border-color .4s ease, box-shadow .45s ease, transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gallery-ph-inner:hover {
    transform: translateY(-2px);
  }
  .gallery-ph-inner .lazy-img.is-visible,
  .gallery-ph-inner .is-loaded .lazy-img {
    transition: opacity .5s ease, transform .85s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gallery-ph-inner:hover .lazy-img.is-visible,
  .gallery-ph-inner:hover .is-loaded .lazy-img {
    transform: scale(1.02);
  }
}

.gallery-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem .85rem .75rem;
  background: linear-gradient(transparent, rgba(7, 7, 8, .92));
  pointer-events: none;
  z-index: 2;
}
.gallery-cap span {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
}

/* Visionneuse tactile : volontairement désactivée sur desktop */
@media (min-width: 768px) {
  .gallery-lightbox { display: none !important; }
}

@media (max-width: 767.98px) {
  .gallery-ph[data-mobile-gallery-item] {
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-ph[data-mobile-gallery-item] .gallery-ph-inner::after {
    content: "+";
    position: absolute;
    top: .6rem;
    right: .6rem;
    z-index: 3;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(7,7,8,.72);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    backdrop-filter: blur(8px);
  }
  .gallery-lightbox {
    --bs-modal-bg: #050506;
    color: #fff;
  }
  .gallery-lightbox .modal-dialog,
  .gallery-lightbox .modal-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100dvh;
    margin: 0;
  }
  .gallery-lightbox .modal-content {
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 40%, rgba(31,91,255,.12), transparent 42%),
      #050506;
    overflow: hidden;
  }
  .gallery-lightbox-head {
    min-height: 72px;
    padding: max(1rem, env(safe-area-inset-top)) 1rem .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .gallery-lightbox-kicker {
    display: block;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  .gallery-lightbox-counter {
    color: var(--muted);
    font-size: .8rem;
  }
  .gallery-lightbox-close,
  .gallery-lightbox-arrow {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.07);
    color: #fff;
    display: grid;
    place-items: center;
    padding: 0;
  }
  .gallery-lightbox-close {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
  }
  .gallery-lightbox-body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 1rem 0;
    touch-action: pan-y;
    user-select: none;
  }
  .gallery-lightbox-media {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  .gallery-lightbox-media img {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 190px);
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    box-shadow: 0 24px 65px rgba(0,0,0,.65);
    opacity: 0;
    transform: scale(.985);
    transition: opacity .22s ease, transform .3s ease;
  }
  .gallery-lightbox-media img.is-ready {
    opacity: 1;
    transform: scale(1);
  }
  .gallery-lightbox-loader {
    position: absolute;
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255,255,255,.14);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: gallerySpin .7s linear infinite;
  }
  .gallery-lightbox-media.is-ready .gallery-lightbox-loader { display: none; }
  .gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 58px;
    background: rgba(5,5,6,.68);
    backdrop-filter: blur(8px);
    border-radius: 5px;
    transform: translateY(-50%);
    font-size: 1.1rem;
  }
  .gallery-lightbox-arrow.is-prev { left: .55rem; }
  .gallery-lightbox-arrow.is-next { right: .55rem; }
  .gallery-lightbox-foot {
    min-height: 78px;
    padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .gallery-lightbox-foot p {
    margin: 0;
    color: #fff;
    font-weight: 600;
  }
  .gallery-lightbox-foot span {
    color: var(--muted);
    font-size: .76rem;
  }
}

@keyframes gallerySpin {
  to { transform: rotate(360deg); }
}

/* ---------- LAZY LOAD ---------- */
.lazy-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: var(--ar, 1);
}
.lazy-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    var(--bg-3) 0%,
    var(--bg-2) 40%,
    rgba(212, 18, 40, .08) 50%,
    var(--bg-2) 60%,
    var(--bg-3) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.lazy-wrap.is-loaded .lazy-shimmer {
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.lazy-wrap picture,
.lazy-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo,
.hero-logo {
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .15);
}
.hero-logo {
  width: clamp(120px, 22vw, 180px);
  height: clamp(120px, 22vw, 180px);
  margin: 0 auto 1.25rem;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.12),
    0 0 0 6px rgba(212,18,40,.18),
    0 0 0 10px rgba(31,91,255,.12),
    0 25px 60px rgba(0,0,0,.55);
}
.nav-logo {
  width: 44px;
  height: 44px;
}
.about-logo-img {
  width: 58%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

/* ---------- FAQ ---------- */
.section-faq {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(31,91,255,.06), transparent 60%),
    var(--bg);
}
.accordion-faq {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-bg: var(--surface);
  --bs-accordion-active-bg: rgba(212,18,40,.08);
  --bs-accordion-active-color: #fff;
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-body-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 2px rgba(212,18,40,.25);
}
.accordion-faq .accordion-button {
  font-weight: 600;
  font-size: .98rem;
  padding: 1.15rem 1.25rem;
}
.accordion-faq .accordion-button:not(.collapsed) {
  color: #fff;
  border-left: 3px solid var(--red);
}
.accordion-faq .accordion-body {
  color: var(--muted);
  padding: 0 1.25rem 1.15rem 1.35rem;
  line-height: 1.65;
  font-size: .96rem;
}

/* ---------- MAP FACADE ---------- */
.map-facade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(212,18,40,.06), rgba(31,91,255,.06)),
    var(--bg-3);
  cursor: pointer;
}
.map-facade-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.map-facade-btn:hover {
  border-color: var(--red);
  background: rgba(212,18,40,.12);
}
.map-facade.is-loaded {
  cursor: default;
}
.map-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
}

/* ---------- HOURS ---------- */
.section-hours {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,18,40,.08), transparent 60%),
    var(--bg);
}
.hours-list {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: 0; }
.hours-day {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.hours-day em {
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, var(--red), var(--blue));
  padding: .2rem .5rem;
}
.hours-time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hours-row.is-today {
  background: rgba(255,255,255,.04);
}
.hours-row.is-today .hours-time {
  color: #fff;
  font-weight: 600;
}
.hours-row.is-closed .hours-time {
  color: #6b6b76;
}

/* ---------- MAP ---------- */
.section-map { background: var(--bg-2); }
.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.map-frame {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  min-height: 280px;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
}

/* ---------- CONTACT ---------- */
.section-contact {
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(31,91,255,.1), transparent 60%),
    var(--bg);
}
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .35rem;
  min-height: 160px;
  padding: 1.4rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  height: 100%;
  transition: border-color .35s ease, background .35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .contact-tile {
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .35s ease, background .35s ease;
  }
  .contact-tile:hover {
    transform: translateY(-2px);
  }
}
.contact-tile i {
  font-size: 1.55rem;
  margin-bottom: .35rem;
  color: var(--silver);
}
.contact-tile .contact-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-tile strong {
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}
.contact-tile:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.contact-wa:hover i { color: var(--whatsapp); }
.contact-ig:hover i { color: #e1306c; }
.contact-tt:hover i { color: #69c9d0; }
.contact-tile:not(.contact-wa):not(.contact-ig):not(.contact-tt):hover i { color: var(--red); }

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 3.5rem 0 5.5rem;
  border-top: 1px solid var(--line);
  background: #050506;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .08em;
}
.footer-tag {
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
}
.footer-seo {
  color: var(--muted);
  font-size: .92rem;
  max-width: 32ch;
}
.footer-title {
  font-family: var(--font-display);
  letter-spacing: .14em;
  font-size: 1.05rem;
  margin-bottom: .85rem;
  color: #fff;
}
.footer-links li { margin-bottom: .45rem; }
.footer-links a {
  color: var(--muted);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: #fff; }
.footer-address {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.footer-brand img {
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: #6e6e78;
  font-size: .85rem;
}
.footer-credit,
.footer-credit a {
  display: inline-flex;
  align-items: center;
}
.footer-credit { gap: .65rem; }
.footer-credit a {
  gap: .6rem;
  color: #a9a9b2;
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}
.footer-credit a:hover {
  color: #fff;
  opacity: .9;
}
.footer-credit img {
  width: 120px;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-credit {
    flex-direction: column;
  }
}

/* ---------- MOBILE CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(8, 8, 10, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: .35rem .35rem calc(.35rem + env(safe-area-inset-bottom));
}
.mobile-cta-btn {
  display: flex;
  min-width: 0;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  padding: .55rem .25rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  border-radius: var(--radius);
}
.mobile-cta-btn i { font-size: 1.1rem; }
.mobile-cta-btn.call i { color: var(--red); }
.mobile-cta-btn.wa i { color: var(--whatsapp); }
.mobile-cta-btn.nav i { color: var(--waze); }
.mobile-cta-btn:active { background: rgba(255,255,255,.06); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: rgba(7, 7, 8, .97);
    border: 1px solid var(--line);
    margin-top: .75rem;
    padding: .75rem;
  }
  .site-nav .nav-link { padding: .7rem .85rem !important; }
  body { padding-bottom: 72px; }
  .site-footer { padding-bottom: 6.5rem; }
  .products-banner { flex-direction: column; text-align: center; }
  .brand-shop { letter-spacing: .28em; }
  .hero-values { letter-spacing: .16em; }
}

@media (max-width: 575.98px) {
  .hero { padding-bottom: 3.5rem; }
  .hero-cta .btn { width: 100%; }
  .nav-actions .btn { width: 100%; }
  .hours-row { padding: .9rem 1rem; }
  .section-head { margin-bottom: 2rem; }
  .brand-text em { display: none; }
}

@media (min-width: 992px) {
  .about-row { min-height: 380px; }
}

/* Badge env local (masqué en prod) */
.env-badge {
  position: fixed;
  bottom: .75rem;
  left: .75rem;
  z-index: 9998;
  padding: .25rem .55rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(212, 18, 40, .85);
  border: 1px solid rgba(255,255,255,.2);
  pointer-events: none;
  opacity: .75;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lazy-shimmer { animation: none; background: var(--bg-3); }
  .hero-logo,
  .hero-bg::before,
  .hero-bg::after,
  .hero-scroll { animation: none; }
  .gallery-ph-inner,
  .gallery-ph-inner .lazy-img,
  .gallery-ph-inner:hover,
  .gallery-ph-inner:hover .lazy-img,
  .service-item,
  .service-item:hover,
  .contact-tile,
  .contact-tile:hover {
    transform: none !important;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, opacity .2s ease !important;
  }
}
