/* ============================================================
   Mr Connectivity — clean corporate-premium
   ============================================================ */

:root {
  --red: #E10600;
  --red-600: #C10600;
  --red-050: #FFF1F0;
  --ink: #0A0E17;
  --ink-700: #1C2230;
  --slate: #5A6472;
  --slate-400: #8A93A3;
  --line: #E7E9EE;
  --line-soft: #EFF1F5;
  --bg: #FFFFFF;
  --bg-2: #F6F7F9;
  --bg-3: #F0F2F6;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", var(--font-sans);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(10, 14, 23, .04), 0 6px 20px rgba(10, 14, 23, .05);
  --shadow-md: 0 8px 30px rgba(10, 14, 23, .08), 0 2px 6px rgba(10, 14, 23, .04);
  --shadow-lg: 0 30px 70px rgba(10, 14, 23, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

.container { width: min(var(--container), 92%); margin-inline: auto; }

/* Visible keyboard focus (WCAG 2.4.7) — offset so it shows on light and dark alike */
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
a:focus-visible, .btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(225, 6, 0, .28); }
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(225, 6, 0, .34); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-nav { padding: .6rem 1.15rem; background: var(--ink); color: #fff; font-size: .9rem; }
.btn-nav:hover { background: var(--red); transform: translateY(-1px); }
.btn-block { width: 100%; padding: 1rem; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand-mark { width: 34px; height: 34px; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; }
.brand-accent { color: var(--red); }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav > a { font-weight: 500; font-size: .96rem; position: relative; transition: color .2s; }
.site-nav > a:not(.btn) { color: var(--ink-700); }
.site-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--red); transition: width .3s var(--ease);
}
.site-nav > a:not(.btn):hover { color: var(--ink); }
.site-nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: 1rem 4% 1.5rem; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu a { padding: .8rem .4rem; font-weight: 600; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a.btn { margin-top: .6rem; border-bottom: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(225, 6, 0, .06), transparent 60%),
    radial-gradient(50% 60% at 0% 30%, rgba(10, 14, 23, .04), transparent 60%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .55rem; text-transform: uppercase;
  letter-spacing: .16em; font-size: .78rem; font-weight: 600; color: var(--slate); margin-bottom: 1.4rem;
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--red-050); }
.hero-title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.035em; line-height: .98;
  font-size: clamp(3.1rem, 8.2vw, 6.2rem); color: var(--ink); margin-bottom: 1.6rem;
}
.hero-title .accent { color: var(--red); }
.hero-lede { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink-700); max-width: 34ch; margin-bottom: 2rem; }
.hero-lede strong { font-weight: 700; color: var(--ink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .35rem .5rem; color: var(--slate); font-size: .9rem; font-weight: 500; }
.hero-trust .sep { color: var(--line); margin-right: .35rem; }

.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  aspect-ratio: 1216 / 832; background: linear-gradient(135deg, #f3f4f7, #fff);
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: -22px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 1rem 1.2rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  max-width: 220px;
}
.hero-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--red); line-height: 1; }
.hero-badge-label { font-size: .82rem; color: var(--slate); margin-top: .3rem; }

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--bg-2); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding: 1.5rem 0; }
.trust-label { font-size: .85rem; color: var(--slate); font-weight: 500; max-width: 22ch; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2.2rem; }
.trust-logos li { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--slate); letter-spacing: -.01em; transition: color .2s; }
.trust-logos li:hover { color: var(--ink); }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-muted { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--ink); }
.section-sub { margin-top: 1.1rem; font-size: 1.1rem; color: var(--slate); }
.section-head--light .section-title, .section-head--light .section-sub { color: #fff; }
.section-head--light .section-sub { color: rgba(255, 255, 255, .72); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.9rem;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; position: relative; overflow: hidden;
}
.pillar::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red); transition: width .4s var(--ease); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar:hover::before { width: 100%; }
.pillar.is-featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.pillar.is-featured p { color: rgba(255, 255, 255, .74); }
.pillar.is-featured .pillar-list li { color: rgba(255, 255, 255, .82); border-color: rgba(255, 255, 255, .12); }
.pillar.is-featured .pillar-icon { background: rgba(255, 255, 255, .08); color: #fff; }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--red-050); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 1.4rem;
}
.pillar-icon svg { width: 30px; height: 30px; }
.pillar h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; margin-bottom: .7rem; }
.pillar p { color: var(--slate); font-size: 1rem; }
.pillar-list { margin-top: 1.3rem; }
.pillar-list li { font-size: .92rem; color: var(--ink-700); padding: .6rem 0; border-top: 1px solid var(--line-soft); display: flex; align-items: center; gap: .5rem; }
.pillar-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: none; }

/* ---------- Services (dark) ---------- */
.section-dark { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg-image); background-size: cover; background-position: center; opacity: .28;
}
.section-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(10,14,23,.72), rgba(10,14,23,.92)), radial-gradient(70% 60% at 80% 10%, rgba(225,6,0,.18), transparent 60%);
}
.section-dark > .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.service:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .22); }
.service-no { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--red); letter-spacing: .05em; }
.service h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: .8rem 0 .6rem; letter-spacing: -.02em; }
.service p { color: rgba(255, 255, 255, .68); font-size: .98rem; }
.service--cta { background: var(--red); border-color: var(--red); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: .3rem; }
.service--cta:hover { background: var(--red-600); transform: translateY(-5px); }
.service--cta p { color: rgba(255, 255, 255, .88); margin-bottom: 1rem; }
.service--cta .btn-primary { background: #fff; color: var(--ink); box-shadow: none; }
.service--cta .btn-primary:hover { background: var(--ink); color: #fff; }

/* ---------- Mantra ---------- */
.mantra { background: var(--bg); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.mantra blockquote { max-width: 900px; margin: 0 auto; text-align: center; }
.mantra p { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 3.8vw, 2.7rem); line-height: 1.28; letter-spacing: -.01em; color: var(--ink); }
.mantra-word { font-family: var(--font-display); font-weight: 700; }
.mantra-word.accent { color: var(--red); }
.mantra cite { display: block; margin-top: 1.8rem; font-style: normal; font-weight: 600; color: var(--slate); font-size: 1rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-visual-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--bg-3); }
.about-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--slate); font-size: 1.06rem; margin-top: 1.1rem; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.about-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--ink); letter-spacing: -.02em; }
.stat-label { font-size: .85rem; color: var(--slate); margin-top: .2rem; }

/* ---------- Insights ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.insight {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.insight:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.insight-tag { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); background: var(--red-050); padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem; }
.insight h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -.02em; margin-bottom: .5rem; }
.insight p { color: var(--slate); font-size: .98rem; }
.insights-foot { margin-top: 2rem; color: var(--slate); font-weight: 500; }
.insights-foot a { color: var(--red); font-weight: 600; }

/* ---------- Contact ---------- */
.section-contact { background: linear-gradient(180deg, var(--bg-2), #fff); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-lede { font-size: 1.12rem; color: var(--slate); margin-top: 1.1rem; }
.contact-points { margin-top: 1.8rem; display: grid; gap: .9rem; }
.contact-points li { display: flex; gap: .7rem; color: var(--ink-700); font-size: 1.02rem; }
.contact-points li span { color: var(--red); font-weight: 700; }
.contact-direct { margin-top: 2rem; color: var(--slate); }
.contact-direct a { color: var(--red); font-weight: 600; }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink-700); }
.field .opt { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-050);
}
.field.invalid input, .field.invalid textarea { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-050); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .95rem; font-weight: 500; min-height: 1.2em; }
.form-status.ok { color: #157347; }
.form-status.err { color: var(--red); }
.form-fineprint { font-size: .82rem; color: var(--slate); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand .brand { color: #fff; }
.footer-tag { margin-top: 1rem; color: var(--slate-400); font-family: var(--font-display); font-weight: 600; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .8rem; padding-top: .4rem; }
.footer-nav a, .footer-contact a { color: rgba(255, 255, 255, .72); font-size: .96rem; transition: color .2s; width: fit-content; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-legal { padding-top: 1.8rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 1.5rem; }
.footer-legal p { color: var(--slate-400); font-size: .85rem; }
.footer-credit a { color: rgba(255, 255, 255, .72); font-weight: 600; transition: color .2s; }
.footer-credit a:hover { color: var(--red); }

/* ---------- Out & About gallery ---------- */
.out-about-head { max-width: 680px; }
.gallery { column-width: 236px; column-gap: 16px; }
.ga-item {
  display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0;
  background: var(--bg-3); border-radius: 14px; overflow: hidden; cursor: pointer;
  break-inside: avoid; position: relative; line-height: 0;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s;
}
.ga-item::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px; pointer-events: none;
  box-shadow: inset 0 0 0 0 var(--red); transition: box-shadow .35s var(--ease);
}
.ga-item img { width: 100%; height: auto; border-radius: 14px; transition: transform .55s var(--ease); }
.ga-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ga-item:hover img { transform: scale(1.045); }
.ga-item:hover::after { box-shadow: inset 0 0 0 3px var(--red); }
.gallery.is-collapsed .ga-item:nth-child(n+16) { display: none; }
.gallery-more { text-align: center; margin-top: 2.4rem; }
#gallery-toggle .ga-count { color: var(--slate); font-weight: 500; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(10, 14, 23, .92); backdrop-filter: blur(4px); }
.lb-stage {
  position: relative; z-index: 1; margin: 0; max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
}
.lb-img {
  max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: 12px;
  box-shadow: var(--shadow-lg); background: var(--ink-700);
}
.lightbox.open .lb-img { animation: lbpop .3s var(--ease); }
@keyframes lbpop { from { transform: scale(.96); opacity: .4; } to { transform: none; opacity: 1; } }
.lb-count { color: rgba(255, 255, 255, .72); font-size: .9rem; font-weight: 500; letter-spacing: .02em; }
.lb-btn {
  position: absolute; z-index: 2; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 1.9rem; line-height: 1;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .28);
  transition: background .2s, transform .2s, border-color .2s;
}
.lb-btn:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .5); }
.lb-close { top: 18px; right: 20px; font-size: 2rem; }
.lb-prev { left: clamp(10px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
body.no-scroll { overflow: hidden; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .mobile-menu { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-badge { left: 8px; }
  .pillars, .services-grid, .insights-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery { column-width: 150px; column-gap: 12px; }
  .ga-item { margin-bottom: 12px; }
}
@media (min-width: 620px) and (max-width: 940px) {
  .pillars, .services-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .pillar:hover, .service:hover, .insight:hover, .ga-item:hover { transform: none !important; }
  .ga-item:hover img { transform: none !important; }
  .lightbox.open .lb-img { animation: none !important; }
}
