/* ============================================================
   BORDER SPARKS — styles.css
   Palette: warm charcoal (from logo) + amber accent + cream
   Type: Fraunces (display) / Archivo (body)
   ============================================================ */

:root {
  /* Brand */
  --charcoal:      #3a3636;
  --charcoal-deep: #2a2727;
  --charcoal-soft: #5a5656;
  --amber:         #d69e2e;
  --amber-deep:    #b9832010;
  --amber-hover:   #c48c22;
  --cream:         #f5f2ec;

  /* Semantic — LIGHT (default) */
  --bg:            #ffffff;
  --bg-alt:        #f7f4ee;
  --bg-elev:       #ffffff;
  --surface:       #ffffff;
  --ink:           #2a2727;
  --ink-soft:      #5a5656;
  --ink-faint:     #8a8484;
  --border:        #e7e2d9;
  --border-strong: #d9d3c8;
  --accent:        #c48c22;      /* amber, darkened for AA on white */
  --accent-ink:    #ffffff;
  --hero-ink:      #ffffff;
  --shadow:        0 18px 40px -20px rgba(42, 39, 39, .28);
  --shadow-sm:     0 6px 18px -10px rgba(42, 39, 39, .25);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Archivo", system-ui, -apple-system, sans-serif;

  /* Layout */
  --header-h: 76px;
  --radius:   18px;
  --radius-sm: 12px;
  --maxw:     1180px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="dark"] {
  --bg:            #211e1e;
  --bg-alt:        #262323;
  --bg-elev:       #2c2929;
  --surface:       #2c2929;
  --ink:           #f3efe8;
  --ink-soft:      #c3bdb4;
  --ink-faint:     #8f8880;
  --border:        #3a3636;
  --border-strong: #4a4545;
  --accent:        #e6ad3d;      /* brighter amber for dark bg */
  --accent-ink:    #211e1e;
  --hero-ink:      #ffffff;
  --shadow:        0 20px 50px -20px rgba(0,0,0,.6);
  --shadow-sm:     0 8px 22px -12px rgba(0,0,0,.55);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1rem;
}
.eyebrow i { font-size: .8em; }
.eyebrow-amber { color: var(--amber); }

.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.2rem,5vw,3.5rem); text-align: center; }
.section-title { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0 0 .8rem; color: var(--ink); }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-weight: 600;
  border-radius: 999px; padding: .72rem 1.5rem;
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1.5px solid transparent; transition: all .25s var(--ease);
  letter-spacing: .01em;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-lg { padding: .95rem 1.9rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
  box-shadow: 0 10px 24px -12px rgba(196,140,34,.9);
}
.btn-primary:hover { background: var(--amber-hover); border-color: var(--amber-hover); color: var(--accent-ink); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--hero-ink); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline-dark:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-2px); }

.btn-call {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
  padding: .55rem 1.1rem; font-size: .95rem; border-radius: 999px;
}
.btn-call:hover { background: var(--amber-hover); color: var(--accent-ink); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.site-header .navbar { padding: .6rem 0; min-height: var(--header-h); }
.site-header .navbar > .container { display: flex; align-items: center; flex-wrap: nowrap; }
.navbar-brand { margin-right: 0; }
.navbar-brand img { height: 44px; width: auto; }
/* desktop: links between brand and controls */
@media (min-width: 992px) {
  .navbar-collapse { order: 1; flex: 1 1 auto; display: flex !important; }
  .navbar-collapse .navbar-nav { display: flex !important; flex-direction: row; align-items: center; gap: .25rem; margin-left: auto; }
  .nav-controls { order: 2; margin-left: 1rem; }
  .navbar-toggler { display: none !important; }
}
.nav-controls { flex: none; }
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }

.navbar-nav { list-style: none; margin: 0; padding: 0; }
.navbar-nav .nav-item { list-style: none; }
.navbar-nav .nav-link {
  font-weight: 500; color: var(--ink); padding: .5rem 1rem;
  position: relative; transition: color .2s var(--ease);
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .35rem; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.navbar-nav .nav-link:hover { color: var(--accent); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

/* Theme toggle */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border-strong); background: var(--surface);
  color: var(--ink); cursor: pointer; position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem; line-height: 1; transition: all .25s var(--ease);
}
.theme-toggle svg { display: block; transition: transform .35s var(--ease); }
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); transform: rotate(-12deg); }
.theme-toggle:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: inline-block; }

/* Burger */
.navbar-toggler { border: 1.5px solid var(--border-strong); border-radius: 10px; padding: .4rem .55rem; }
.navbar-toggler:focus { box-shadow: none; outline: 3px solid var(--accent); }
.burger, .burger::before, .burger::after {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.burger { position: relative; }
.burger::before, .burger::after { content: ""; position: absolute; left: 0; }
.burger::before { top: -7px; }
.burger::after { top: 7px; }
.navbar-toggler[aria-expanded="true"] .burger { background: transparent; }
.navbar-toggler[aria-expanded="true"] .burger::before { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .burger::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 88svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 25%, rgba(214,158,46,.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(214,158,46,.08), transparent 40%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 600;
  margin: 0 0 1.2rem; letter-spacing: -.015em; line-height: 1.1; max-width: 15ch;
}
.hero-lead { color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 620px; margin: 0 0 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero-trust {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.4rem;
  color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 500;
}
.hero-trust i { color: var(--amber); margin-right: .45rem; }

/* Large logo panel on the right */
.hero-logo { display: flex; align-items: center; justify-content: center; padding: 1rem; }
.hero-logo img { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; z-index: 3;
}
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--amber); border-radius: 3px; animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.btn-whatsapp { background: #25d366; color: #2a2727; border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe5b; border-color: #1ebe5b; color: #2a2727; transform: translateY(-2px); }
.contact-card .btn-whatsapp { color: #2a2727; }

/* ============================================================
   FACEBOOK
   ============================================================ */
.facebook { background: var(--bg); }
.fb-embed { display: flex; justify-content: center; }
.fb-card {
  width: 100%; max-width: 560px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-sm);
  display: flex; justify-content: center; overflow: hidden;
}
.fb-card .fb-page,
.fb-card .fb-page span,
.fb-card .fb-page iframe { width: 100% !important; max-width: 100% !important; }
.fb-cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }
.reviews-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); min-height: 120px;
}
#mjq-widget { min-height: 80px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-alt); }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: var(--surface); border-radius: var(--radius-sm); padding: .8rem 1.1rem;
  display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.about-badge i { width: 40px; height: 40px; border-radius: 10px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 1.1rem; }
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.about-badge span { font-size: .8rem; color: var(--ink-faint); }

.about-text { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.4rem; margin: 1.6rem 0 2rem; }
.feat { display: flex; align-items: center; gap: .7rem; font-weight: 500; font-size: .96rem; color: var(--ink); }
.feat i { color: var(--accent); width: 22px; text-align: center; }

.badges-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); font-weight: 600; margin: 0 0 .8rem; }
.badges-label span { text-transform: none; letter-spacing: 0; font-weight: 400; }
.cert-badges { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.cert { color: var(--ink-soft); opacity: .8; transition: opacity .25s, transform .25s; }
.cert:hover { opacity: 1; transform: translateY(-2px); }
.cert img { height: 62px; width: auto; }
[data-theme="dark"] .cert img { filter: invert(1) brightness(1.6); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
  border-radius: calc(var(--radius) + 6px); padding: clamp(2rem, 5vw, 3.4rem);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(214,158,46,.25), transparent 68%);
}
.contact-card .eyebrow { color: var(--amber); }
.contact-title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 .8rem; }
.contact-lead { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 0 1.8rem; position: relative; }

/* Contact form */
.contact-form { position: relative; margin-bottom: 1.6rem; }
.contact-form label { display: block; color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin: 0 0 .35rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: .7rem .9rem; color: #fff; font-family: var(--font-body);
  font-size: .98rem; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--amber); background: rgba(255,255,255,.12); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .contact-actions { margin-top: 1.4rem; margin-bottom: 0; }
.cf-status { margin: 1rem 0 0; font-size: .92rem; font-weight: 500; min-height: 1.2em; }
.cf-status.is-success { color: #7ee2a8; }
.cf-status.is-error { color: #ffb4a8; }

.contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; position: relative; }
.contact-card .btn-outline-dark { color: #fff; border-color: rgba(255,255,255,.5); }
.contact-card .btn-outline-dark:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

.contact-social { display: flex; align-items: center; flex-wrap: wrap; gap: .7rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.contact-social a:not(.mjq-link) {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16);
  transition: all .25s var(--ease);
}
.contact-social a:not(.mjq-link):hover { background: var(--amber); color: var(--charcoal-deep); border-color: var(--amber); transform: translateY(-3px); }
.contact-social .mjq-link {
  display: inline-flex; align-items: center; gap: .45rem; height: 42px; padding: 0 1rem;
  border-radius: 999px; background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.16); font-weight: 600; transition: all .25s var(--ease);
}
.contact-social .mjq-link:hover { background: var(--amber); color: var(--charcoal-deep); border-color: var(--amber); transform: translateY(-3px); }
.contact-social .mjq-link i { color: var(--amber); }
.contact-social .mjq-link:hover i { color: var(--charcoal-deep); }

.contact-side { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.4rem; position: relative; }
.cs-row { display: flex; gap: .9rem; align-items: flex-start; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cs-row:last-child { border-bottom: 0; }
.cs-row > i { width: 38px; height: 38px; border-radius: 10px; background: rgba(214,158,46,.18); color: var(--amber); display: grid; place-items: center; flex: none; }
.cs-row small { display: block; color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.cs-row a, .cs-row span { color: #fff; font-weight: 500; word-break: break-word; }
.cs-row a:hover { color: var(--amber); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal-deep); color: rgba(255,255,255,.72); padding: 3.5rem 0 1.6rem; }
.footer-logo { height: 46px; margin-bottom: 1rem; }
.footer-blurb { font-size: .92rem; max-width: 320px; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.12);
  transition: all .25s var(--ease);
}
.footer-social a:hover { background: var(--amber); color: var(--charcoal-deep); transform: translateY(-3px); }

.footer-heading { color: #fff; font-size: 1.05rem; margin: 0 0 1rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: .55rem; font-size: .92rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-contact i { color: var(--amber); width: 18px; margin-right: .4rem; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-bottom p { margin: 0; }
.credit { font-size: .72rem; color: rgba(255,255,255,.4); }
.credit a { color: rgba(255,255,255,.55); }
.credit a:hover { color: var(--amber); }

/* ============================================================
   MOBILE STICKY WHATSAPP BAR
   ============================================================ */
.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  display: none; align-items: center; justify-content: center; gap: .5rem;
  background: #25d366; color: #2a2727; font-weight: 700;
  padding: .95rem 1rem; font-size: 1rem;
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,.4);
}
.mobile-call-bar:hover { color: #2a2727; }

/* ============================================================
   GALLERY (FILM STRIP)
   ============================================================ */
.gallery { background: var(--bg-alt); overflow: hidden; }
.filmstrip {
  position: relative; width: 100%; overflow: hidden;
  padding: .5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.filmstrip-track {
  display: flex; gap: 1rem; width: max-content;
  animation: filmscroll 60s linear infinite;
  will-change: transform;
}
.filmstrip:hover .filmstrip-track,
.filmstrip-track.is-paused { animation-play-state: paused; }
@keyframes filmscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.film-item {
  flex: 0 0 auto; width: clamp(230px, 26vw, 320px); aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  cursor: pointer; border: 1px solid var(--border);
  background: var(--surface); padding: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.film-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.film-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42,39,39,.55));
  opacity: 0; transition: opacity .3s var(--ease);
}
.film-item .film-zoom {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); font-size: 1rem;
  opacity: 0; transform: scale(.7); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.film-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.film-item:hover img { transform: scale(1.06); }
.film-item:hover::after { opacity: 1; }
.film-item:hover .film-zoom { opacity: 1; transform: scale(1); }
.film-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,18,18,.92); backdrop-filter: blur(6px);
  padding: 4.5rem 1rem;
  opacity: 0; transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lb-figure { margin: 0; max-width: min(1000px, 92vw); max-height: 84vh; display: flex; flex-direction: column; align-items: center; }
.lb-image {
  max-width: 100%; max-height: 76vh; width: auto; height: auto;
  border-radius: var(--radius-sm); box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  transform: scale(.96); transition: transform .3s var(--ease);
}
.lightbox.is-open .lb-image { transform: scale(1); }
.lb-caption { color: rgba(255,255,255,.9); margin-top: 1rem; font-weight: 500; text-align: center; font-size: 1.02rem; }
.lb-close, .lb-nav {
  position: absolute; z-index: 2; border: none; cursor: pointer;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.lb-close { top: 1.2rem; right: 1.2rem; width: 48px; height: 48px; border-radius: 50%; font-size: 1.2rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; font-size: 1.2rem; }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-close:hover, .lb-nav:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.lb-close:focus-visible, .lb-nav:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.lb-counter { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .9rem; letter-spacing: .05em; }

/* ============================================================
   ANIMATION HELPERS (JS-driven, safe defaults)
   ============================================================ */
[data-anim] { will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-elev); margin-top: .6rem; border-radius: var(--radius-sm);
    border: 1px solid var(--border); padding: .6rem; box-shadow: var(--shadow-sm);
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-link { padding: .8rem 1rem; border-radius: 10px; }
  .navbar-nav .nav-link:hover { background: var(--bg-alt); }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 2.5rem); text-align: center; }
  .hero-title { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-logo { margin-top: 2rem; }
  .hero-logo img { max-width: 300px; }
}

@media (max-width: 767.98px) {
  :root { --header-h: 68px; }
  .navbar-brand img { height: 38px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-trust { gap: .5rem 1.2rem; font-size: .88rem; }
  .contact-actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* room for sticky bar */
  body { padding-bottom: 58px; }
  .site-footer { padding-bottom: 4.5rem; }
  .mobile-call-bar { display: flex; }

  /* gallery / lightbox */
  .film-item { width: 72vw; }
  .lightbox { padding: 3.5rem .5rem; }
  .lb-close { top: .7rem; right: .7rem; width: 42px; height: 42px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .lb-image { max-height: 68vh; }
}

@media (max-width: 400px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .filmstrip-track { animation: none !important; transform: none !important; }
  .filmstrip { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
