/* ============================================
   CIMA — Empreendimento Page Styles
   Paleta: wine / sand / off-white
   ============================================ */

/* ── HERO SPLIT ── */
.ep-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--wine);
}
@media (max-width: 1024px) { .ep-hero { grid-template-columns: 1fr; } }

.ep-hero-col1 {
  display: flex; align-items: center;
  padding: 80px 60px;
}
.ep-hero-col1-inner { max-width: 520px; }
@media (max-width: 768px) { .ep-hero-col1 { padding: 60px 24px; } }

.ep-hero-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 20px;
}
.ep-hero-name {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--off-white);
  margin-bottom: 20px;
}
.ep-hero-tagline {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(236,234,233,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}
.ep-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.ep-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236,234,233,0.06);
  border: 1px solid rgba(236,234,233,0.15);
  padding: 8px 14px; border-radius: 100px;
  font-size: 12px; color: rgba(236,234,233,0.7);
}
.ep-badge--gold { border-color: rgba(215,149,94,0.4); color: var(--sand); background: rgba(215,149,94,0.05); }
.ep-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero gallery */
.ep-hero-col2 {
  display: flex; align-items: center;
  padding: 80px 60px 80px 30px;
  position: relative; z-index: 2;
}
@media (max-width: 1024px) { .ep-hero-col2 { display: none; } }
.ep-hero-gallery { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.ep-gallery-main { height: 380px; border-radius: 4px; overflow: hidden; }
.ep-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

/* scroll hint */
.ep-scroll-hint {
  position: absolute; bottom: 32px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(236,234,233,0.4);
}
.ep-scroll-line { width: 40px; height: 1px; background: rgba(236,234,233,0.4); }

/* ── IMG PLACEHOLDER ── */
.ep-img-placeholder {
  background: linear-gradient(135deg, var(--c1, rgba(215,149,94,0.1)), var(--c2, rgba(215,149,94,0.03)));
  border: 1px solid rgba(215,149,94,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ep-img-real {
  border-radius: 4px; overflow: hidden;
  position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.ep-img-real[data-lightbox] > * { pointer-events: none; }
.ep-img-real:hover { transform: scale(1.02); }
.ep-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(215,149,94,0.03) 50%, transparent 70%);
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.ep-img-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.ep-img-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(215,149,94,0.5);
}
.ep-img-sm { height: 90px; }
.ep-img-tall { height: 500px; }
.ep-img-more { background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)) !important; }
.ep-img-more .ep-img-label { font-size: 18px !important; font-weight: 700; color: rgba(236,234,233,0.7) !important; letter-spacing: 0; }

/* ── FICHA BAR ── */
.ep-ficha-bar {
  background: var(--wine-3);
  border-bottom: 1px solid rgba(236,234,233,0.08);
  display: flex; flex-wrap: wrap;
}
.ep-ficha-item {
  flex: 1; min-width: 140px;
  padding: 20px 28px;
  border-right: 1px solid rgba(236,234,233,0.10);
}
.ep-ficha-item:last-child { border-right: none; }
.ep-ficha-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 4px;
}
.ep-ficha-val {
  font-family: var(--display);
  font-size: 16px; font-weight: 600; color: var(--off-white);
}

/* ── SECTIONS ── */
.ep-section { padding: 120px 0; }
.ep-section--dark  { background: var(--wine); }
.ep-section--dark2 { background: #f5f2f0; }
.ep-section--light { background: var(--off-white); }
.ep-container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 768px) { .ep-container { padding: 0 24px; } .ep-section { padding: 80px 0; } }

.ep-section-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--wine-3); margin-bottom: 20px;
}
.ep-section-title em { font-style: italic; color: var(--brown); }
.ep-section--dark .ep-section-title { color: var(--off-white); }
.ep-section--dark .ep-section-title em { color: var(--sand); }
.ep-section--light .ep-section-title { color: var(--wine-3); }
.ep-section--light .ep-section-title em { color: var(--brown); }
.ep-text { font-size: 15px; color: var(--gray); line-height: 1.75; }
.ep-section--dark .ep-text { color: rgba(236,234,233,0.7); }
.ep-section--light .ep-text { color: var(--gray); }

.ep-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) { .ep-two-col { grid-template-columns: 1fr; gap: 48px; } }

/* ── GALERIA STRIP ── */
.ep-gallery-section { padding: 0; overflow: hidden; }
.ep-gallery-strip {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  height: 320px;
  gap: 4px;
}
@media (max-width: 768px) { .ep-gallery-strip { grid-template-columns: 1fr 1fr; height: 200px; } }
.ep-gallery-strip-item { border-radius: 0; height: 100%; }

/* ── DIFERENCIAIS ── */
.ep-diffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.ep-diff-card {
  background: #ffffff;
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: all var(--transition);
}
.ep-diff-card:hover { background: #faf8f7; border-top-color: var(--brown); }
/* section-tag and ep-section-title overrides inside dark ep-sections */
.ep-section--dark .section-tag { color: var(--sand); }
.ep-section--dark .section-tag::before { background: var(--sand); }
.ep-section--dark .ep-tipo-tag { color: var(--sand); }
.ep-section--dark .ep-tipo-name { color: var(--off-white); }
.ep-section--dark .ep-tipo-spec-val { color: var(--sand); }
.ep-section--dark .ep-tipo-spec-label { color: rgba(236,234,233,0.4); }
.ep-section--dark .ep-tipo-specs { border-top-color: rgba(236,234,233,0.08); }
.ep-section--dark .ep-tipo-spec { border-bottom-color: rgba(236,234,233,0.08); }
.ep-section--dark .ep-tipo-planta { background: rgba(236,234,233,0.03); border-color: rgba(236,234,233,0.08); }
.ep-section--dark .ep-tab {
  background: rgba(236,234,233,0.04);
  border-color: rgba(236,234,233,0.10);
  color: rgba(236,234,233,0.45);
}
.ep-section--dark .ep-tab:hover { color: rgba(236,234,233,0.75); border-color: rgba(236,234,233,0.20); }
.ep-section--dark .ep-tab.active {
  background: rgba(215,149,94,0.12);
  border-color: rgba(215,149,94,0.45);
  color: var(--sand);
}

.ep-section--dark .ep-diff-card { background: var(--wine-2); }
.ep-section--dark .ep-diff-card:hover { background: var(--wine-3); border-top-color: var(--sand); }
.ep-diff-num {
  font-family: var(--display);
  font-size: 48px; font-weight: 700;
  color: rgba(161,79,44,0.15);
  line-height: 1; margin-bottom: 16px;
}
.ep-section--dark .ep-diff-num { color: rgba(215,149,94,0.2); }
.ep-diff-title {
  font-family: var(--display);
  font-size: 18px; font-weight: 600; color: var(--wine-3);
  margin-bottom: 10px;
}
.ep-section--dark .ep-diff-title { color: var(--off-white); }
.ep-diff-text { font-size: 13px; color: var(--gray); line-height: 1.7; }
.ep-section--dark .ep-diff-text { color: rgba(236,234,233,0.7); }

/* ── PLANTAS / SLIDER ── */
.ep-plantas-tabs {
  display: flex; gap: 2px; flex-wrap: wrap;
  margin-bottom: 2px;
}
.ep-planta-tab {
  padding: 12px 24px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--off-white-2); color: var(--gray);
  border: none; cursor: pointer;
  transition: all var(--transition);
  border-top: 2px solid transparent;
}
.ep-planta-tab:hover { color: var(--wine); }
.ep-planta-tab.active { background: #ffffff; color: var(--brown); border-top-color: var(--brown); }

.ep-plantas-panels { }
.ep-planta-panel { display: none; }
.ep-planta-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
@media (max-width: 768px) { .ep-planta-panel.active { grid-template-columns: 1fr; } }

.ep-planta-visual {
  background: var(--off-white-2);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ep-planta-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.ep-planta-icon { opacity: 0.3; display:flex; align-items:center; justify-content:center; }
.ep-planta-icon svg { width: 52px; height: 52px; color: var(--wine); }
.ep-planta-label-big {
  font-family: var(--display);
  font-size: 24px; font-weight: 700;
  color: rgba(42,13,13,0.35);
}
.ep-planta-area { font-size: 13px; color: var(--brown); }

.ep-planta-info {
  background: #ffffff;
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.ep-planta-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 24px;
}
.ep-planta-specs {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 24px;
}
.ep-spec { display: flex; align-items: center; gap: 16px; }
.ep-spec-icon { display:flex; align-items:center; justify-content:center; color: var(--sand); }
.ep-spec-icon svg { width: 20px; height: 20px; flex-shrink:0; }
.ep-spec div { display: flex; flex-direction: column; }
.ep-spec strong { font-size: 18px; font-family: var(--display); color: var(--wine-3); line-height: 1; }
.ep-spec span { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.ep-planta-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── TABS LIFESTYLE ── */
.ep-tabs { margin-top: 48px; }
.ep-tabs-nav {
  display: flex; gap: 2px; flex-wrap: wrap;
  margin-bottom: 2px;
}
.ep-tab-btn {
  padding: 14px 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--off-white-2); color: var(--gray);
  border: none; cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
}
.ep-tab-btn:hover { color: var(--wine); }
.ep-tab-btn.active { background: #ffffff; color: var(--brown); border-bottom-color: var(--brown); }
.ep-tab-panel { display: none; background: #ffffff; padding: 40px; }
.ep-tab-panel.active { display: block; }
.ep-amenities {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.ep-amenities li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--wine-08);
}
.ep-amenities li::before {
  content: '—'; color: var(--brown); font-size: 12px; flex-shrink: 0;
}

/* ── GALERIA MOSAICO ── */
.ep-gallery-section--2 { padding: 4px 0; }
.ep-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 400px;
  gap: 4px;
  height: 400px;
}
@media (max-width: 768px) { .ep-gallery-mosaic { grid-template-columns: 1fr; height: auto; } }
.ep-mosaic-tall { grid-row: span 1; border-radius: 0; height: 100%; }
.ep-mosaic-col { display: flex; flex-direction: column; gap: 4px; }
.ep-mosaic-sm { flex: 1; border-radius: 0; }

/* ── ESTÁGIOS ── */
.ep-stages { display: flex; flex-direction: column; gap: 16px; }
.ep-stage-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.ep-stage-name { font-size: 12px; color: var(--gray); }
.ep-stage-pct { font-size: 12px; font-weight: 600; color: var(--brown); }
.ep-stage-bar {
  height: 3px; background: var(--wine-08); border-radius: 2px; overflow: hidden;
}
.ep-stage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brown), var(--sand));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.ep-obra-month { margin-top: 0; }
.ep-obra-month-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 12px;
}

/* ── CATÁLOGO CTA ── */
.ep-catalogo {
  background: linear-gradient(90deg, var(--wine-2) 0%, var(--wine-3) 100%);
  border-top: 1px solid rgba(236,234,233,0.08);
  border-bottom: 1px solid rgba(236,234,233,0.08);
  padding: 60px;
}
.ep-catalogo-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.ep-catalogo-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 8px;
}
.ep-catalogo-title {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: var(--off-white);
  margin-bottom: 8px;
}
.ep-catalogo-text { font-size: 14px; color: rgba(236,234,233,0.7); max-width: 480px; }
@media (max-width: 768px) { .ep-catalogo { padding: 40px 24px; } }

/* ── LOCALIZAÇÃO ── */
.ep-pois { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.ep-poi {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--wine-08);
}
.ep-poi-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ep-poi div { display: flex; flex-direction: column; gap: 2px; }
.ep-poi strong { font-size: 14px; color: var(--wine-3); }
.ep-poi span { font-size: 12px; color: var(--gray); }

.ep-map-placeholder {
  height: 400px;
  background: var(--off-white-2);
  border: 1px solid var(--wine-08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ep-map-inner { text-align: center; }
.ep-map-pin { font-size: 48px; margin-bottom: 12px; }
.ep-map-label { font-size: 13px; color: var(--gray); }

/* ── QUOTE ── */
.ep-quote-section {
  background: var(--sand);
  padding: 80px 60px;
  text-align: center;
}
.ep-quote-text {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 40px);
  font-style: italic; font-weight: 700;
  color: var(--wine-3);
  margin-bottom: 12px;
}
.ep-quote-brand {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(42,13,13,0.5);
}

/* ── FORMULÁRIO ── */
.ep-credenciais {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.ep-cred-num {
  font-family: var(--display);
  font-size: 28px; font-weight: 700; color: var(--brown); line-height: 1;
}
.ep-cred-label { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.ep-section--dark .ep-cred-num { color: var(--sand); }
.ep-section--dark .ep-cred-label { color: rgba(236,234,233,0.4); }

/* ── OUTROS EMPREENDIMENTOS ── */
.ep-others-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.ep-other-card {
  position: relative; height: 320px;
  display: flex; align-items: flex-end;
  overflow: hidden; cursor: pointer;
}
.ep-other-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ep-other-card:hover .ep-other-bg { transform: scale(1.06); }
.ep-other-bg--nio    { background: linear-gradient(135deg,var(--wine-3),var(--wine-2)); }
.ep-other-bg--cedrat { background: linear-gradient(135deg,var(--wine-2),#2a1010); }
.ep-other-bg--aventus{ background: linear-gradient(135deg,var(--wine-3),#3a0e0e); }
.ep-other-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
}
.ep-other-content { position: relative; z-index: 2; padding: 28px; }
.ep-other-name {
  font-family: var(--display);
  font-size: 28px; font-weight: 700; color: var(--off-white);
  margin-bottom: 4px;
}
.ep-other-tag { font-size: 12px; color: rgba(236,234,233,0.7); margin-bottom: 12px; }
.ep-other-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand);
  opacity: 0; transform: translateY(8px);
  transition: all var(--transition);
}
.ep-other-card:hover .ep-other-link { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   TIPOLOGIAS — tabs + panels
══════════════════════════════════════════ */
.ep-tab {
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  background: none;
  border: 1px solid var(--wine-15);
  border-radius: 100px;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}
.ep-tab:hover { color: var(--wine); border-color: var(--brown); }
.ep-tab.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--off-white);
}

.ep-tipo-panel { }
.ep-tipo-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .ep-tipo-grid { grid-template-columns: 1fr; gap: 40px; } }

.ep-tipo-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown); margin-bottom: 12px;
}
.ep-tipo-name {
  font-family: var(--display);
  font-size: 42px; font-weight: 800;
  color: var(--wine-3); line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 32px;
}
.ep-tipo-specs {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--wine-08);
}
.ep-tipo-spec {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--wine-08);
}
.ep-tipo-spec-val {
  font-family: var(--display);
  font-size: 22px; font-weight: 800;
  color: var(--brown); letter-spacing: -0.02em;
}
.ep-tipo-spec-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--gray); text-transform: uppercase;
}
.ep-tipo-planta {
  background: var(--off-white-2);
  border: 1px solid var(--wine-08);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
}
.ep-tipo-planta img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* ── FILTER TABS (emp.css override — dark sections) ── */
.ep-section--dark .filter-tab {
  background: rgba(236,234,233,0.04);
  border-color: rgba(236,234,233,0.12);
  color: rgba(236,234,233,0.5);
}
.ep-section--dark .filter-tab:hover { color: rgba(236,234,233,0.8); }
.ep-section--dark .filter-tab.active {
  background: rgba(215,149,94,0.15);
  border-color: rgba(215,149,94,0.5);
  color: var(--sand);
}

/* ── ENTREGUES GRID (emp.css — inherits light theme from style.css) ── */

/* ── PHOTO STRIP (abaixo do contato) ── */
.ep-photo-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.ep-photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.ep-photo-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
@media (max-width: 768px) { .ep-photo-strip { height: 260px; } }

/* ── LIGHTBOX ── */
.cima-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center; flex-direction: column;
}
.cima-lightbox.open { display: flex; }
.cima-lightbox-img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain; border-radius: 2px;
  user-select: none;
}
.cima-lightbox-caption {
  margin-top: 18px;
  font-family: var(--label, 'Inter', sans-serif);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(236,234,233,0.55);
}
.cima-lightbox-close {
  position: absolute; top: 28px; right: 32px;
  background: none; border: none; cursor: pointer;
  color: rgba(236,234,233,0.6); font-size: 32px; line-height: 1;
  transition: color 0.2s;
}
.cima-lightbox-close:hover { color: #fff; }
.cima-lightbox-prev, .cima-lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(236,234,233,0.55); font-size: 40px; line-height: 1;
  padding: 16px; transition: color 0.2s;
}
.cima-lightbox-prev:hover, .cima-lightbox-next:hover { color: #fff; }
.cima-lightbox-prev { left: 20px; }
.cima-lightbox-next { right: 20px; }
.cima-lightbox-counter {
  position: absolute; top: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--label, 'Inter', sans-serif);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(236,234,233,0.4);
}

/* make gallery divs clickable */
[data-lightbox] { cursor: zoom-in; }
