.lens-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(105, 3, 14, 0.18), transparent 30%),
    linear-gradient(135deg, #140406 0%, #25070c 44%, #4a0d16 100%);
  color: #f7efe5;
}

.lens-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  pointer-events: none;
}

.lens-section .container {
  position: relative;
  z-index: 1;
}

.lens-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lens-header-copy {
  max-width: 760px;
}

.lens-overline {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(215, 184, 102, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8c87b;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lens-title {
  margin-bottom: 0.9rem;
  color: #fff6e9;
  font-family: "Trajan Pro", sans-serif;
  letter-spacing: 0.04em;
}

.lens-intro {
  margin-bottom: 0;
  color: rgba(255, 244, 230, 0.84);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.lens-grid {
  row-gap: 1.5rem;
}

.lens-card-col {
  display: flex;
}

.lens-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.lens-card:hover,
.lens-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(232, 200, 123, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.lens-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at top, rgba(232, 200, 123, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(43, 7, 13, 0.7), rgba(10, 3, 4, 0.95));
  overflow: hidden;
}

.lens-media-action {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: transparent;
}

.lens-media-action:focus-visible {
  outline: 2px solid rgba(248, 225, 167, 0.9);
  outline-offset: -6px;
  border-radius: 24px;
}

.lens-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lens-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(8, 2, 4, 0.06), rgba(8, 2, 4, 0.82));
  pointer-events: none;
}

.lens-play-badge {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 244, 230, 0.5);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.12);
  color: #fff7ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.lens-play-badge i {
  font-size: 1rem;
}

.lens-media-copy {
  min-width: 0;
}

.lens-media-label,
.lens-date {
  font-family: "Montserrat", sans-serif;
}

.lens-media-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #ecd28b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lens-media-title {
  margin: 0;
  color: #fff9f0;
  font-family: "Trajan Pro", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.lens-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.3rem 1.3rem 1.4rem;
}

.lens-date {
  margin-bottom: 0;
  color: #d8b870;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lens-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  border: 1px solid rgba(232, 200, 123, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 200, 123, 0.2), rgba(255, 255, 255, 0.08));
  color: #fff8ee;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lens-view-more {
  padding: 0.9rem 1.45rem;
  white-space: nowrap;
}

.lens-view-more:hover,
.lens-view-more:focus {
  color: #fff;
  border-color: rgba(248, 225, 167, 0.7);
  background: linear-gradient(135deg, rgba(232, 200, 123, 0.32), rgba(255, 255, 255, 0.14));
  transform: translateY(-1px);
}

.lens-view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.lens-page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 3.5rem;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(31, 5, 9, 0.95), rgba(70, 10, 20, 0.92)),
    url("../images/nav_bg.png") center/cover;
  color: #fff7ea;
}

.lens-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 2, 4, 0.06), rgba(10, 2, 4, 0.56));
}

.lens-page-hero .container {
  position: relative;
  z-index: 1;
}

.lens-page-kicker {
  margin-bottom: 1rem;
}

.lens-page-title {
  margin-bottom: 1rem;
  color: #fff7ea;
  font-family: "Trajan Pro", sans-serif;
  letter-spacing: 0.06em;
}

.lens-page-copy {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 244, 230, 0.86);
  font-family: "Montserrat", sans-serif;
  line-height: 1.85;
}

.lens-page-shell {
  background:
    linear-gradient(180deg, rgba(253, 249, 242, 0.82), rgba(255, 255, 255, 0.96)),
    url("../images/bg.png") center top/cover;
}

.lens-page-shell .lens-card {
  border-color: rgba(105, 3, 14, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.lens-page-shell .lens-card:hover,
.lens-page-shell .lens-card:focus-within {
  border-color: rgba(105, 3, 14, 0.26);
}

.lens-page-shell .lens-card-body {
  color: #3c2a1d;
}

.lens-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lens-modal.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lens-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 2, 4, 0.76);
  backdrop-filter: blur(12px);
}

.lens-modal-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(90vh, 980px);
  border: 1px solid rgba(232, 200, 123, 0.25);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  z-index: 1;
}

.lens-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 4, 6, 0.72);
  color: #fff;
  font-size: 1.15rem;
  z-index: 2;
}

.lens-modal-close:hover,
.lens-modal-close:focus {
  background: rgba(20, 4, 6, 0.92);
}

.lens-modal-scroll {
  max-height: inherit;
  overflow-y: auto;
}

.lens-modal-media {
  background: #0c0204;
}

.lens-modal-video {
  display: block;
  width: 100%;
  max-height: 62vh;
  background: #0c0204;
}

.lens-modal-body {
  padding: 1.5rem 1.5rem 1.8rem;
}

.lens-modal-date {
  margin-bottom: 0.6rem;
  color: #8f5c14;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lens-modal-title {
  margin-bottom: 1rem;
  color: #3d0911;
  font-family: "Trajan Pro", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.45;
}

.lens-modal-caption p {
  margin-bottom: 1rem;
  color: #4b3426;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.9;
}

.lens-modal-caption p:last-child {
  margin-bottom: 0;
}

body.lens-modal-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .lens-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .lens-view-more-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .lens-section {
    border-radius: 0;
  }

  .lens-media {
    aspect-ratio: 16 / 11;
  }

  .lens-card-body {
    padding: 1.1rem 1rem 1.2rem;
  }

  .lens-view-more {
    width: 100%;
  }

  .lens-page-hero {
    padding: 4.75rem 0 2.75rem;
  }

  .lens-modal {
    padding: 0.75rem;
  }

  .lens-modal-dialog {
    max-height: 94vh;
    border-radius: 20px;
  }

  .lens-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 42px;
    height: 42px;
  }

  .lens-modal-body {
    padding: 1.1rem 1rem 1.35rem;
  }
}
