:root {
  --dark: #242021;
  --dark-soft: #322d2e;
  --white: #ffffff;
  --cream: #f6f2ec;
  --paper: #faf7f2;
  --olive: #7a9a01;
  --olive-dark: #607804;
  --silver: #c0c0c0;
  --silver-soft: #e5e3df;
  --ink-60: rgba(36,32,33,0.6);
  --ink-40: rgba(36,32,33,0.4);
  --shadow: 0 8px 30px rgba(36,32,33,0.08);
  --shadow-lg: 0 24px 60px rgba(36,32,33,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 500;
  color: var(--dark);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--olive-dark); text-decoration: none; }
a:hover { color: var(--olive); }

/* ─── Nav ─────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36,32,33,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-overlay {
  background: linear-gradient(180deg, rgba(36,32,33,0.65) 0%, rgba(36,32,33,0.20) 70%, transparent 100%);
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream);
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: contain;
}
.nav-menu a.active { color: var(--olive); }
.nav-menu a.active::after { transform: scaleX(1); }
.brand-word { line-height: 1; }
.nav-menu {
  display: flex; align-items: center; gap: 28px;
}
.nav-menu a {
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--olive);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-ig { color: var(--olive) !important; }
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--cream);
  transition: transform 0.22s, opacity 0.22s;
}
.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); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--dark);
    flex-direction: column; gap: 0;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-height: 0; overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .nav-menu.open { max-height: 360px; }
  .nav-menu a {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px;
  }
  .nav-menu a::after { display: none; }
}

/* ─── Hero (immersive bg, light fade for readability) ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 22px 96px;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 10%, rgba(122,154,1,0.08), transparent 50%),
    linear-gradient(180deg, rgba(250,247,242,0.82) 0%, rgba(250,247,242,0.88) 55%, rgba(250,247,242,0.96) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-size: clamp(58px, 11vw, 124px);
  line-height: 0.94;
  letter-spacing: -1px;
  margin: 0 0 22px;
  color: var(--dark);
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
  .hero { padding: 96px 22px 72px; min-height: 64vh; }
}
.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--olive-dark);
  margin: 0 0 18px;
}
.eyebrow-light { color: rgba(255,255,255,0.85); }
.display {
  font-family: 'Lilita One', cursive;
  font-size: clamp(46px, 8vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
  color: var(--dark);
}
.display .accent { color: var(--olive); }
.display-2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(36px, 5vw, 54px);
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.display-2.light { color: var(--white); }
.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-60);
  max-width: 620px;
  margin: 0 auto 32px;
}
.cta-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-meta {
  position: relative;
  font-size: 15px;
  color: var(--dark);
  margin: 22px 0 0;
  text-align: center;
  font-weight: 600;
}
.hero-meta strong { color: var(--olive-dark); }
.hero-meta-sub {
  font-size: 13.5px;
  color: var(--ink-60);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-meta-sub a { color: var(--olive-dark); }
.hero-meta strong { color: var(--olive-dark); }

/* ─── Buttons ─────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(122,154,1,0.30);
}
.btn-primary:hover { background: var(--olive-dark); color: var(--white); box-shadow: 0 10px 26px rgba(122,154,1,0.40); }
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: var(--cream); }
.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover { background: #0f0d0e; color: var(--white); }
.btn-block { width: 100%; }

/* ─── Sections ────────────────────── */
.section {
  padding: 96px 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-olive {
  background: var(--dark);
  color: var(--cream);
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.section-olive::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(122,154,1,0.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(192,192,192,0.06), transparent 50%);
  pointer-events: none;
}
.section-olive .section-head,
.section-olive .products,
.section-olive .shop-note { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.muted { color: var(--ink-60); margin: 0; }
.muted-light { color: rgba(255,255,255,0.7); margin: 0; }

/* ─── Gallery (natural-aspect masonry) ──── */
.masonry {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.masonry-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.masonry .tile {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--silver-soft);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.masonry .tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.masonry .tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.masonry .tile:hover img { transform: scale(1.04); }

/* ─── Products ────────────────────── */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .products { grid-template-columns: 1fr; max-width: 460px; } }
.product {
  background: var(--cream);
  color: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product.featured {
  outline: 3px solid var(--olive);
  outline-offset: -3px;
}
.product .badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--olive);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product-art {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--silver-soft);
}
.product-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product:hover .product-art img { transform: scale(1.05); }
.product-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-body h3 {
  font-family: 'Lilita One', cursive;
  font-size: 26px;
  margin: 0;
  letter-spacing: 0.2px;
}
.product-spec {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-dark);
  margin: 0;
}
.product-desc {
  color: var(--ink-60);
  font-size: 14.5px;
  margin: 0;
  flex: 1;
}
.product-price {
  font-family: 'Lilita One', cursive;
  font-size: 28px;
  color: var(--olive-dark);
  margin-top: 4px;
}
.product-price .save {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  background: var(--silver-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.order-btn { margin-top: 6px; align-self: flex-start; }
.shop-note {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin: 28px auto 0;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

/* ─── Care section ────────────────── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.care-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  gap: 28px;
}
@media (max-width: 900px) {
  .care-grid,
  .care-grid-2 { grid-template-columns: 1fr; max-width: 600px; }
}
.care-card {
  background: var(--white);
  border: 1px solid var(--silver-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.care-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.care-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--dark);
}
.care-intro {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.55;
}
.care-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.care-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--dark);
}
.care-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--olive);
}
.care-section { padding: 40px 22px 64px; }
.reels-section { padding-top: 24px; padding-bottom: 88px; }
.reels-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 860px) {
  .reels-grid { grid-template-columns: 1fr; max-width: 540px; gap: 22px; }
}
.reel-embed { width: 100%; }
.reel-embed .instagram-media { margin: 0 auto !important; min-width: 0 !important; }
.reel-links {
  display: flex; flex-direction: column; gap: 14px;
}
.ig-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--silver-soft);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}
.ig-card:hover {
  border-color: var(--olive);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.ig-card-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.ig-card-icon svg { width: 26px; height: 26px; }
.ig-card-body { flex: 1; min-width: 0; }
.ig-card-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive-dark);
  margin: 0 0 4px;
}
.ig-card h4 {
  font-family: 'Lilita One', cursive;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--dark);
}
.ig-card-cta {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-60);
  font-weight: 600;
}
.section-cream { background: var(--cream); max-width: none; margin: 0; padding-left: 22px; padding-right: 22px; }
.section-cream .contact-grid { max-width: 1040px; margin: 0 auto; }

/* ─── Contact ─────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-copy { text-align: left; }
.contact-copy .display-2,
.contact-copy .eyebrow,
.contact-copy .muted { text-align: left; margin-left: 0; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex; align-items: baseline; gap: 16px;
  font-size: 16px;
}
.contact-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--olive-dark);
  min-width: 84px;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--silver-soft);
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 14px;
  border: 1.5px solid var(--silver-soft);
  border-radius: 10px;
  background: var(--paper);
  color: var(--dark);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122,154,1,0.12);
}
.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-60);
  text-align: center;
}
.form-note.success { color: var(--olive-dark); font-weight: 600; }

/* ─── Footer ──────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 22px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--cream);
  font-family: 'Lilita One', cursive;
  font-size: 20px;
}
.footer-brand img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: contain;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 22px;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
}
.footer-links a:hover { color: var(--olive); }
.footer-fine { font-size: 12px; margin: 0; color: rgba(255,255,255,0.4); }

/* ─── Page head (gallery page) ───── */
.page-head {
  padding: 88px 22px 32px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  text-align: center;
}
.page-head-inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-head .display-2 {
  font-size: clamp(44px, 6vw, 64px);
  margin-bottom: 16px;
}
.page-head .muted { max-width: 520px; margin: 0 auto; }
.gallery-section { padding: 40px 22px 88px; }

/* ─── CTA strip (gallery footer) ─── */
.cta-strip {
  background: var(--dark);
  color: var(--cream);
  padding: 72px 22px;
  text-align: center;
}
.cta-strip-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-strip .display-2 { color: var(--white); margin-bottom: 12px; }
.cta-strip .muted {
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
}
.cta-strip .cta-row { justify-content: center; }
.cta-strip .btn-ghost { color: var(--cream); border-color: rgba(255,255,255,0.4); }
.cta-strip .btn-ghost:hover { background: var(--cream); color: var(--dark); border-color: var(--cream); }

/* ─── Send modal ──────────────────── */
.send-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: lbFade 0.18s ease;
}
.send-modal[hidden] { display: none; }
.send-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,17,18,0.62);
  cursor: pointer;
}
.send-modal-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  max-height: 92vh;
  overflow-y: auto;
}
.send-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: 0;
  background: transparent;
  font-size: 26px;
  color: var(--ink-60);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
}
.send-modal-close:hover { background: var(--silver-soft); color: var(--dark); }
.send-modal-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: 0.2px;
}
.send-modal-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--ink-60);
}
.send-options {
  display: flex; flex-direction: column; gap: 10px;
}
.send-opt {
  display: flex; flex-direction: column;
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--silver-soft);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.18s, transform 0.15s, background 0.18s;
  font: inherit;
}
.send-opt:hover {
  border-color: var(--olive);
  background: var(--cream);
  transform: translateY(-1px);
}
.send-opt-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.send-opt-hint {
  font-size: 12.5px;
  color: var(--ink-60);
  margin-top: 3px;
}

/* ─── Lightbox ────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,17,18,0.94);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: lbFade 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .lightbox { padding: 12px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
