/* ── PAGE HEADER ── */
.videos-header {
  padding: 3rem var(--gutter) 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 0.5px solid var(--rule);
}
.videos-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.5938rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.videos-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
}

/* ── GRID ── */
.videos-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--gutter) 5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

/* ── VIDEO TILE ── */
.vtile {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg2);
}
.vtile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.vtile:hover img {
  transform: scale(1.04);
  filter: brightness(0.72);
}

.vtile-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
  pointer-events: none;
}
.vtile:hover .vtile-play { opacity: 1; }

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s var(--ease);
}
.vtile:hover .play-circle { transform: scale(1.08); }
.play-circle svg {
  width: 20px;
  height: 20px;
  fill: var(--ink);
  margin-left: 3px; /* optical centering */
}

/* ── LIGHTBOX ── */
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 5, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lb-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.lb-container {
  position: relative;
  width: min(900px, 92vw);
}
.lb-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}
.lb-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.lb-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  padding: 0;
}
.lb-close:hover { color: #fff; }
.lb-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .videos-header { padding: 2rem var(--gutter) 1.5rem; }
  .videos-main   { padding: 1.5rem var(--gutter) 3rem; }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
}
