/* Chevmic — shared base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Cross-brand bridge banner shown on every sub-brand page */
.sister-bar {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 9px 16px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 500;
}
.sister-bar a { text-decoration: underline; text-underline-offset: 3px; }
.sister-bar .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* Visually hidden */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Generic lightbox (used on multiple pages) */
.lb-backdrop {
  position: fixed; inset: 0; background: rgba(8,7,5,0.94); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px;
  animation: lbIn 0.25s ease;
}
.lb-backdrop.open { display: flex; }
.lb-backdrop img { max-width: 92vw; max-height: 82vh; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,0.7); }
.lb-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: #f6f2ec;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 0.04em; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: #f6f2ec; font-size: 28px; padding: 14px;
  background: rgba(255,255,255,0.06); border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.14); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
