@font-face {
  font-family: "Jakarta";
  src: url("fonts/plus-jakarta-sans-latin-ext-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Jakarta";
  src: url("fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1b1a17;
  --ink-2: #4a4740;
  --muted: #6f6b62;
  --paper: #faf7f2;
  --paper-2: #f1ece3;
  --line: #e3ddd2;
  --red: #d8361f;
  --red-dark: #b32914;
  --orange: #f08a1c;
  --yellow: #f4c21f;
  --green: #2f9e44;
  --blue: #1f5fbf;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(27, 26, 23, .06), 0 12px 32px -12px rgba(27, 26, 23, .18);
  --wrap: 1180px;
  --pad: clamp(18px, 4.5vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Jakarta", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 6.2vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.nowrap { white-space: nowrap; }
.break { overflow-wrap: anywhere; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 0 1.4em;
  border-radius: 999px; border: 2px solid var(--red);
  background: var(--red); color: #fff;
  font: inherit; font-weight: 700; text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--yellow); border-color: var(--yellow); }
.btn-small { min-height: 42px; padding: 0 1.1em; font-size: .95rem; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: conic-gradient(from 200deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--red));
  position: relative;
}
.brand-mark::after { content: ""; position: absolute; inset: 9px; border-radius: 6px; background: var(--paper); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; }
.brand-text small { font-size: .74rem; color: var(--muted); font-weight: 600; }
.nav { display: flex; gap: 26px; }
.nav a { text-decoration: none; font-weight: 600; font-size: .96rem; color: var(--ink-2); position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--red); transition: right .2s; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.menu-toggle { display: none; }

/* Hero */
.hero { padding: clamp(28px, 6vw, 72px) 0 clamp(40px, 7vw, 88px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .86rem; font-weight: 700; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px 6px 10px;
  margin-bottom: 22px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47, 158, 68, .18); }
.hero h1 span.nowrap {
  background: linear-gradient(transparent 62%, rgba(244, 194, 31, .55) 62%, rgba(244, 194, 31, .55) 90%, transparent 90%);
}
.lead { font-size: clamp(1.05rem, 2.1vw, 1.22rem); color: var(--ink-2); max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 34px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 540px; }
.hero-points li { border-left: 3px solid var(--red); padding-left: 12px; display: flex; flex-direction: column; line-height: 1.25; }
.hero-points li:nth-child(2) { border-color: var(--yellow); }
.hero-points li:nth-child(3) { border-color: var(--green); }
.hero-points strong { font-size: 1.15rem; font-weight: 800; }
.hero-points span { font-size: .86rem; color: var(--muted); }

.hero-media { position: relative; display: grid; grid-template-columns: 1fr .62fr; grid-template-rows: auto auto; gap: 14px; }
.hero-media figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-2); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-main { grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.hero-side { align-self: end; aspect-ratio: 4 / 5; }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 999px; padding: 10px 16px 10px 12px;
  font-weight: 700; font-size: .92rem; box-shadow: var(--shadow);
}
.swatch { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #fff; margin-right: -10px; }
.swatch.s1 { background: var(--red); } .swatch.s2 { background: var(--yellow); } .swatch.s3 { background: var(--green); margin-right: 4px; }

.stripe { display: flex; height: 8px; }
.stripe span { flex: 1; }
.stripe span:nth-child(1) { background: var(--red); }
.stripe span:nth-child(2) { background: var(--orange); }
.stripe span:nth-child(3) { background: var(--yellow); }
.stripe span:nth-child(4) { background: var(--green); }
.stripe span:nth-child(5) { background: var(--blue); }

/* Sections */
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-tint { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #f3efe7; }
.section-dark p { color: #cfc9bd; }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 5vw, 52px); }
.section-head p:last-child { color: var(--muted); font-size: 1.05rem; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.section-dark .kicker { color: var(--yellow); }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; transition: transform .25s, box-shadow .25s;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service p { color: var(--muted); margin: 0; font-size: .98rem; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px; }
.service-icon svg { width: 24px; height: 24px; fill: #fff; }
.c1 { background: var(--red); } .c2 { background: var(--orange); } .c3 { background: var(--green); }
.c4 { background: var(--blue); } .c5 { background: #8a5a2b; } .c6 { background: var(--ink); }

/* Before / after */
.ba-grid { display: grid; grid-template-columns: 1fr minmax(0, 460px); gap: clamp(32px, 6vw, 80px); align-items: center; }
.checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.checks li { padding-left: 34px; position: relative; color: #f3efe7; font-weight: 600; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6); user-select: none; touch-action: pan-y;
  width: 100%; max-width: 460px; justify-self: end;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; pointer-events: none; }
.ba-handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; letter-spacing: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; }
.ba-label {
  position: absolute; top: 14px; padding: 5px 12px; border-radius: 999px;
  background: rgba(27, 26, 23, .72); color: #fff; font-size: .8rem; font-weight: 700; pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; background: var(--green); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: 14px; }
.g-item {
  position: relative; padding: 0; border: 0; margin: 0; cursor: zoom-in;
  border-radius: 14px; overflow: hidden; background: var(--paper-2); font: inherit;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-cap {
  position: absolute; left: 10px; bottom: 10px; right: 10px; text-align: left;
  color: #fff; font-weight: 700; font-size: .9rem; text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}
.g-item::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, .45)); pointer-events: none; }
.g-cap { z-index: 1; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; margin: 0; }
.lightbox::backdrop { background: rgba(15, 14, 12, .92); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 60px 16px; }
.lightbox img { max-width: min(92vw, 1100px); max-height: calc(100vh - 150px); width: auto; height: auto; border-radius: 10px; }
.lightbox figcaption { color: #eee; font-weight: 600; text-align: center; }
.lb-close, .lb-nav {
  position: fixed; border: 0; background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer;
  width: 50px; height: 50px; border-radius: 50%; font-size: 2rem; line-height: 1; display: grid; place-items: center;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, .25); }
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.steps li { background: #fff; border-radius: var(--radius); padding: 26px 22px; border: 1px solid var(--line); }
.steps p { color: var(--muted); margin: 0; font-size: .98rem; }
.step-no {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 800; margin-bottom: 16px;
}
.steps li:nth-child(2) .step-no { background: var(--red); }
.steps li:nth-child(3) .step-no { background: var(--orange); }
.steps li:nth-child(4) .step-no { background: var(--green); }

/* Reviews */
.review-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.rc-logo { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-weight: 800; font-size: 1.5rem; color: #fff; }
.rc-google { background: conic-gradient(from -45deg, #ea4335 0 25%, #fbbc05 0 50%, #34a853 0 75%, #4285f4 0); }
.rc-firmy { background: #cc0000; }
.rc-body { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }
.rc-body strong { font-size: 1.08rem; }
.rc-body span { color: var(--muted); font-size: .9rem; }
.rc-stars { color: var(--yellow); font-size: 1.2rem; letter-spacing: 2px; white-space: nowrap; }
.promises { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.promises li { color: var(--muted); font-size: .96rem; border-top: 3px solid var(--line); padding-top: 14px; }
.promises strong { display: block; color: var(--ink); font-size: 1.05rem; }
.promises li:nth-child(1) { border-color: var(--red); }
.promises li:nth-child(2) { border-color: var(--orange); }
.promises li:nth-child(3) { border-color: var(--green); }
.promises li:nth-child(4) { border-color: var(--blue); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.contact-lead { font-size: 1.08rem; max-width: 34em; }
.contact-actions { display: grid; gap: 14px; margin-top: 28px; }
.contact-big {
  display: flex; flex-direction: column; text-decoration: none; padding: 18px 22px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); transition: background .2s, border-color .2s;
}
.contact-big:hover { background: rgba(255, 255, 255, .12); border-color: var(--yellow); }
.contact-big small { color: #a9a396; font-weight: 600; font-size: .82rem; }
.contact-big span { font-size: clamp(1.15rem, 3.4vw, 1.6rem); font-weight: 800; color: #fff; }
.contact-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px; }
.contact-card dl { margin: 0 0 22px; display: grid; gap: 16px; }
.contact-card dt { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.contact-card dd { margin: 2px 0 0; font-weight: 600; }
.contact-card .btn { width: 100%; background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-card .btn:hover { background: var(--red); border-color: var(--red); }

/* Footer */
.site-footer { background: #121110; color: #a9a396; padding: 26px 0 calc(26px + env(safe-area-inset-bottom)); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 20px; }
.footer-inner a { color: #e9e4da; text-decoration: none; }
.footer-inner a:hover { color: var(--yellow); }

.fab-call { display: none; }

/* Legal page */
.site-header.is-static { position: static; }
.site-header.is-static .btn { white-space: nowrap; flex: none; }
@media (max-width: 420px) {
  .site-header.is-static .brand-text small { display: none; }
}
.legal { max-width: 780px; padding-top: clamp(32px, 6vw, 64px); padding-bottom: clamp(48px, 8vw, 96px); }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-meta { color: var(--muted); }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .5em; }
.legal a { color: var(--red-dark); overflow-wrap: anywhere; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1040px) {
  .nav { gap: 18px; }
  .nav a { font-size: .9rem; }
  .header-call span { display: none; }
  .header-call { width: 42px; padding: 0; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .promises { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile menu breakpoint ---------- */
@media (max-width: 900px) {
  .menu-toggle {
    display: grid; place-content: center; gap: 6px; width: 44px; height: 44px;
    border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; padding: 0;
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .header-inner { gap: 10px; min-height: 64px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px var(--pad) 18px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, .25);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }

  /* Hero: text first, photos below */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 620px; }
  .ba-grid, .contact-grid { grid-template-columns: 1fr; }
  .ba { justify-self: center; }
}

/* ---------- Phone ---------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark::after { inset: 8px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text small { font-size: .68rem; }
  .eyebrow { font-size: .78rem; margin-bottom: 16px; }
  .hero { padding-top: 22px; }
  .hero-actions { flex-direction: column; margin: 22px 0 26px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { gap: 10px; }
  .hero-points strong { font-size: 1rem; }
  .hero-points span { font-size: .78rem; }

  /* Photos on phone: one clean landscape photo + small second, no awkward tall crops */
  .hero-media { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-main { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 4 / 3; }
  .hero-main img { object-position: center 60%; }
  .hero-side { display: none; }
  .hero-badge { left: 12px; bottom: 12px; font-size: .82rem; padding: 8px 14px 8px 10px; }

  .services, .steps, .review-cards { grid-template-columns: 1fr; }
  .service { padding: 22px 20px; }
  .promises { grid-template-columns: 1fr 1fr; gap: 14px; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 10px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 2; }
  .g-cap { font-size: .8rem; }

  .ba { max-width: 100%; aspect-ratio: 4 / 5; }
  .review-card { padding: 18px; gap: 14px; }
  .rc-stars { display: none; }
  .contact-card { padding: 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding-bottom: 64px; }

  .fab-call {
    display: inline-flex; align-items: center; gap: 8px;
    position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 40;
    background: var(--red); color: #fff; text-decoration: none; font-weight: 700;
    padding: 14px 20px; border-radius: 999px; box-shadow: 0 10px 24px -6px rgba(216, 54, 31, .6);
    transition: opacity .25s, transform .25s;
  }
  .fab-call svg { width: 18px; height: 18px; fill: currentColor; }
  .fab-call.hide { opacity: 0; transform: translateY(20px); pointer-events: none; }
  .lb-nav { top: auto; bottom: 18px; transform: none; }
  .lightbox img { max-height: calc(100vh - 200px); }
}
