/* ============================================================
   Estúdio Lente Um — tema fotografia (A9 Sites)
   Dark minimal: tipografia precisa, masonry protagonista.
   Fontes: Space Grotesk (display) + Inter (texto), via <link>.
   ============================================================ */

:root {
  --brand: #F5F5F4;          /* sobrescrito pelo <style> inline (color_primary) */
  --dark: #0C0C0E;           /* sobrescrito pelo <style> inline (color_dark) */
  --muted: #7A7A80;
  --bg: var(--dark);
  --ink: var(--brand);
  --tile: #19191D;
  --tile-2: #141417;
  --line: rgba(245, 245, 244, .13);
  --line-soft: rgba(245, 245, 244, .07);
  --font-d: 'Space Grotesk', 'Inter', sans-serif;
  --font-t: 'Inter', sans-serif;
  --pad: clamp(1.1rem, 4vw, 2.6rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-t);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--ink); color: var(--bg); }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: var(--pad); }

h1, h2, h3 { font-family: var(--font-d); font-weight: 600; line-height: 1.04; letter-spacing: -0.03em; }

.kicker {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: .9rem;
}

/* revelação por IntersectionObserver — só quando o JS está presente */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- topo ---------- */

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  background: rgba(12, 12, 14, .78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.top-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 62px; }

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand img { max-height: 34px; width: auto; }
.brand-top { font-size: .58rem; text-transform: uppercase; letter-spacing: .34em; color: var(--muted); }
.brand-name { font-family: var(--font-d); font-weight: 600; font-size: 1rem; letter-spacing: .02em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav > a {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--muted);
  padding: .3rem 0;
  position: relative;
  transition: color .25s;
}
.nav > a:hover { color: var(--ink); }
.nav > a.on { color: var(--ink); }
.nav > a.on::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--ink);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: .42rem .95rem !important;
  color: var(--ink) !important;
  font-size: .76rem !important;
  transition: background .25s, color .25s, border-color .25s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; border-color: var(--ink); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; padding: .5rem; margin-right: -.5rem; z-index: 60; position: relative; }
.nav-toggle .i-x { display: none; }
body.nav-open .nav-toggle .i-menu { display: none; }
body.nav-open .nav-toggle .i-x { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.4rem;
    padding: var(--pad);
    background: rgba(12, 12, 14, .97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateY(-102%);
    transition: transform .45s cubic-bezier(.7, 0, .2, 1);
  }
  body.nav-open .nav { transform: none; }
  body.nav-open { overflow: hidden; }
  .nav > a { font-family: var(--font-d); font-size: 1.9rem; letter-spacing: -.02em; color: var(--ink); }
  .nav > a.on::after { bottom: 2px; }
  .nav-cta { margin-top: 1.2rem; font-size: .85rem !important; padding: .6rem 1.3rem !important; }
}

/* ---------- hero ---------- */

.hero { padding-top: calc(62px + clamp(2.4rem, 7vh, 5rem)); }

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.6rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-meta svg { opacity: .7; }
.hero-rating { margin-left: auto; }
.hero-rating svg { color: var(--ink); opacity: 1; }

.hero-grid {
  display: grid;
  gap: 2rem;
  padding-block: clamp(2rem, 6vh, 4.4rem);
  align-items: end;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.55fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
}

.hero h1 {
  font-size: clamp(2.7rem, 8.2vw, 6.4rem);
  letter-spacing: -0.04em;
  line-height: .98;
  max-width: 12ch;
}

.hero-sub { margin-top: 1.6rem; max-width: 46ch; color: var(--muted); font-size: .95rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; margin-top: 2rem; }

.lnk {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem;
  letter-spacing: .03em;
  padding-bottom: .28rem;
  border-bottom: 1px solid var(--line);
  transition: gap .25s, border-color .25s;
}
.lnk:hover { gap: .85rem; border-color: var(--ink); }
.lnk svg { flex: none; }

.lnk-solid {
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: .68rem 1.35rem;
  background: var(--ink);
  color: var(--bg);
  transition: background .25s, color .25s, gap .25s;
}
.lnk-solid:hover { background: transparent; color: var(--ink); gap: .85rem; }

.hero-fig { position: relative; }
.hero-fig img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(.92);
  border: 1px solid var(--line-soft);
}
.hero-fig::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(12, 12, 14, 0) 40%, rgba(12, 12, 14, .55));
  pointer-events: none;
}
.hero-fig figcaption {
  position: absolute; left: .9rem; bottom: .8rem; z-index: 1;
  display: flex; align-items: baseline; gap: .7rem;
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
}
.idx { font-family: var(--font-d); color: var(--muted); }
@media (max-width: 899px) {
  .hero-fig { max-width: 430px; }
  .hero-fig img { aspect-ratio: 4 / 3; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 760px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 1.15rem 1rem 1.3rem 0; }
.stat + .stat { border-left: 1px solid var(--line-soft); padding-left: 1.2rem; }
@media (max-width: 759px) {
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
}
.stat strong {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-d); font-weight: 600; font-size: 1.45rem; letter-spacing: -.02em;
}
.stat strong svg { color: var(--ink); }
.stat span { display: block; margin-top: .15rem; font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  padding: 1rem 0;
  margin-top: clamp(1.5rem, 4vh, 3rem);
}
.marquee-in { display: flex; width: max-content; animation: mq 30s linear infinite; }
.marquee-in span {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(1.3rem, 3.4vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 245, 244, .3);
}
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-in { animation: none; } }

/* ---------- seções ---------- */

.section { padding-block: clamp(3.4rem, 9vh, 6.5rem); }

.sec-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.2rem 3rem;
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); letter-spacing: -.03em; }
.sec-note { max-width: 40ch; color: var(--muted); font-size: .85rem; }
.sec-lnk { color: var(--muted); }
.sec-lnk:hover { color: var(--ink); }

/* ---------- masonry ---------- */

.masonry { columns: 2; column-gap: .65rem; }
@media (min-width: 860px) { .masonry { columns: 3; column-gap: 1rem; } }

.tile {
  position: relative;
  display: block;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: .65rem;
  background: var(--tile);
  cursor: zoom-in;
}
@media (min-width: 860px) { .tile { margin-bottom: 1rem; } }
.tile:nth-child(even) { background: var(--tile-2); }

.r-45 { aspect-ratio: 4 / 5; }
.r-34 { aspect-ratio: 3 / 4; }
.r-11 { aspect-ratio: 1 / 1; }
.r-43 { aspect-ratio: 4 / 3; }
.r-35 { aspect-ratio: 3 / 5; }

.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.07) brightness(.9);
  transition: transform .8s cubic-bezier(.2, .6, .2, 1), filter .5s;
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(12, 12, 14, .06) 45%, rgba(12, 12, 14, .72));
  pointer-events: none;
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.045); filter: grayscale(1) contrast(1.07) brightness(1); }

.tile-idx {
  position: absolute; top: .7rem; left: .8rem; z-index: 1;
  font-family: var(--font-d); font-size: .68rem; letter-spacing: .12em; color: rgba(245, 245, 244, .55);
}
.tile figcaption {
  position: absolute; left: .8rem; right: .8rem; bottom: .65rem; z-index: 1;
  font-size: .72rem; letter-spacing: .05em; color: var(--ink);
  opacity: .85;
  transition: opacity .3s;
}
.tile:hover figcaption { opacity: 1; }

/* ---------- serviços (lista editorial) ---------- */

.svc-sec { padding-top: 0; }
.svc-list { border-top: 1px solid var(--line); }

.svc {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  grid-template-areas: "idx name price" "idx desc desc";
  align-items: baseline;
  column-gap: 1rem;
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
  transition: background .3s, padding .3s;
}
@media (min-width: 900px) {
  .svc {
    grid-template-columns: 3.2rem 1.05fr 1.5fr auto 2.2rem;
    grid-template-areas: "idx name desc price arrow";
    column-gap: 1.6rem;
    padding: 1.35rem .4rem;
  }
  .svc:hover { background: rgba(245, 245, 244, .035); padding-left: 1rem; padding-right: 0; }
}

.svc-idx { grid-area: idx; font-family: var(--font-d); font-size: .72rem; letter-spacing: .1em; color: var(--muted); }
.svc-name { grid-area: name; font-family: var(--font-d); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.35rem); letter-spacing: -.02em; }
.svc-desc { grid-area: desc; font-size: .82rem; color: var(--muted); margin-top: .2rem; }
@media (min-width: 900px) { .svc-desc { margin-top: 0; } }
.svc-price { grid-area: price; font-family: var(--font-d); font-size: .95rem; white-space: nowrap; }
.svc-arrow { grid-area: arrow; display: none; color: var(--muted); transition: color .25s, transform .25s; }
@media (min-width: 900px) { .svc-arrow { display: block; } }
.svc:hover .svc-arrow { color: var(--ink); transform: translateX(4px); }

/* ---------- sobre ---------- */

.about { border-top: 1px solid var(--line-soft); }
.about-grid { display: grid; gap: 2.4rem; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: .82fr 1.18fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
}

.about-fig { border: 1px solid var(--line); padding: .55rem; max-width: 430px; }
.about-fig img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(.92);
}
.about-fig figcaption {
  padding: .7rem .2rem .2rem;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

.about-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); max-width: 18ch; margin-bottom: 1.4rem; }
.about-par { color: var(--muted); max-width: 58ch; }
.about-par + .about-par { margin-top: 1rem; }

.facts { list-style: none; margin-top: 2rem; border-top: 1px solid var(--line); }
.facts li {
  display: flex; align-items: center; gap: .9rem;
  padding: .85rem .1rem;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}
.facts svg { flex: none; color: var(--muted); }

/* ---------- faixa CTA ---------- */

.cta-band {
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 8vh, 5.5rem);
}
.cta-band .kicker { margin-bottom: 1.2rem; max-width: 52ch; text-transform: none; letter-spacing: .04em; font-size: .8rem; }
.cta-big {
  display: inline-flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem);
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(2rem, 6.4vw, 4.6rem);
  letter-spacing: -.035em;
  line-height: 1.02;
}
.cta-big svg { flex: none; transition: transform .35s; }
.cta-big span { border-bottom: 1px solid transparent; transition: border-color .3s; }
.cta-big:hover span { border-color: var(--ink); }
.cta-big:hover svg { transform: translateX(10px); }

/* ---------- cabeçalho de página interna ---------- */

.page-head {
  padding-top: calc(62px + clamp(2.6rem, 8vh, 5.5rem));
  padding-bottom: clamp(1.6rem, 4vh, 3rem);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 { font-size: clamp(2.3rem, 6.4vw, 4.6rem); letter-spacing: -.04em; max-width: 16ch; }
.page-intro { margin-top: 1.3rem; max-width: 52ch; color: var(--muted); font-size: .95rem; }

/* ---------- pacotes ---------- */

.pack-sec { padding-top: clamp(2.2rem, 6vh, 4rem); }

.pack-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 700px) { .pack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .pack-grid { grid-template-columns: repeat(3, 1fr); } }

.pack {
  position: relative;
  background: var(--bg);
  padding: 1.7rem 1.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: background .3s;
}
.pack:hover { background: #101014; }
.pack.feat { background: #131318; }

.pack-badge {
  position: absolute; top: 1.55rem; right: 1.6rem;
  font-size: .58rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--bg);
  background: var(--ink);
  padding: .28rem .6rem;
  border-radius: 99px;
}

.pack-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.2rem; }
.pack-idx { font-family: var(--font-d); font-size: .72rem; letter-spacing: .12em; color: var(--muted); }
.pack-ic { color: var(--muted); }
.pack.feat .pack-top { padding-right: 6.5rem; }

.pack-name { font-size: 1.22rem; letter-spacing: -.02em; }
.pack-price { font-family: var(--font-d); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.1rem); letter-spacing: -.03em; margin-top: .55rem; }
.pack-desc { color: var(--muted); font-size: .84rem; margin-top: .8rem; flex: 1; }
.pack-lnk { margin-top: 1.6rem; align-self: flex-start; font-size: .76rem; color: var(--muted); }
.pack-lnk:hover { color: var(--ink); }
.pack.feat .pack-lnk { color: var(--ink); }

.pack-note { margin-top: 1.4rem; font-size: .78rem; color: var(--muted); max-width: 72ch; }

/* ---------- processo ---------- */

.proc-sec { border-top: 1px solid var(--line-soft); }
.proc-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .proc-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 3rem); } }

.proc { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.proc-idx { font-family: var(--font-d); font-size: .72rem; letter-spacing: .12em; color: var(--muted); }
.proc h3 { font-size: 1.15rem; margin-top: .9rem; letter-spacing: -.02em; }
.proc p { color: var(--muted); font-size: .84rem; margin-top: .55rem; max-width: 34ch; }

/* ---------- contato ---------- */

.contact-sec { padding-top: clamp(2.2rem, 6vh, 4rem); }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 940px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
}

.info-list { list-style: none; border-top: 1px solid var(--line); }
.info-list li {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 1rem;
  padding: .95rem .1rem;
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  align-items: baseline;
}
.info-label { font-size: .62rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.info-list a { border-bottom: 1px solid var(--line); padding-bottom: .1rem; transition: border-color .25s; }
.info-list a:hover { border-color: var(--ink); }
.info-list .social { display: inline-flex; gap: .9rem; }
.info-list .social a { border: 0; color: var(--muted); }
.info-list .social a:hover { color: var(--ink); }

.map { margin-top: 1.6rem; border: 1px solid var(--line); padding: .45rem; }
.map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.86) brightness(.9);
}

.contact-form { border: 1px solid var(--line); padding: clamp(1.4rem, 3vw, 2.2rem); }

.form-kicker { font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; color: var(--muted); margin-bottom: 1.4rem; }

.form label {
  display: block;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.form input:not(.hp), .form textarea {
  display: block;
  width: 100%;
  margin-top: .5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: 500 .95rem/1.5 var(--font-t);
  letter-spacing: normal;
  padding: .45rem 0 .6rem;
  border-radius: 0;
  transition: border-color .25s;
}
.form input:not(.hp):focus, .form textarea:focus { outline: none; border-color: var(--ink); }
.form ::placeholder { color: rgba(122, 122, 128, .65); }
.form textarea { resize: vertical; min-height: 7.5rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.btn-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: .85rem 1.4rem;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  transition: background .25s, color .25s;
}
.btn-solid:hover { background: transparent; color: var(--ink); }

.form-ok {
  display: flex; gap: .9rem; align-items: flex-start;
  border: 1px solid var(--line);
  background: rgba(245, 245, 244, .05);
  padding: 1rem 1.1rem;
  margin-bottom: 1.6rem;
  font-size: .85rem;
}
.form-ok svg { flex: none; margin-top: .1rem; }
.form-ok p { color: var(--muted); margin-top: .15rem; }

/* ---------- rodapé ---------- */

.footer { border-top: 1px solid var(--line-soft); padding-top: clamp(2.4rem, 6vh, 4rem); }

.foot-grid { display: grid; gap: 2rem; padding-bottom: 2.4rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }

.foot-brand { display: flex; flex-direction: column; }
.foot-tag { margin-top: .9rem; font-size: .74rem; color: var(--muted); max-width: 30ch; }

.foot-col { font-size: .8rem; color: var(--muted); }
.foot-col p + p { margin-top: .45rem; }
.foot-col a { transition: color .25s; }
.foot-col a:hover { color: var(--ink); }
.foot-col .social { display: flex; gap: .9rem; margin-top: .9rem; }
.foot-col .social a:hover { color: var(--ink); }

.foot-credit {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem;
  border-top: 1px solid var(--line-soft);
  padding-block: 1.1rem;
  font-size: .72rem;
  color: var(--muted);
}
.foot-credit a { color: var(--ink); border-bottom: 1px solid var(--line); }
.foot-credit a:hover { border-color: var(--ink); }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 8, 10, .94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(1080px, 100%); max-height: 100%; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  border: 1px solid var(--line-soft);
}
.lightbox figcaption { margin-top: .8rem; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.lb-close { position: absolute; top: 1.1rem; right: 1.1rem; padding: .6rem; color: var(--ink); }
