:root {
  --cxp-muted: #98a9bf;
  --cxp-border: rgba(255, 255, 255, 0.1);
}

.cxp-shell {
  width: 100%;
  max-width: 1100px;
  margin: 28px auto 56px;
  padding: 0 24px;
  display: grid;
  gap: 20px;
}

.cxp-hero,
.panel {
  background: rgba(8, 22, 48, 0.9);
  border: 1px solid var(--cxp-border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cxp-hero {
  padding: 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 8px;
}

.cxp-hero h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-sub {
  color: var(--cxp-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #bed0e6;
  font-size: 14px;
}

.cxp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  padding: 20px;
}

.panel.wide {
  grid-column: span 2;
}

.panel h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.panel p,
.panel li {
  color: var(--cxp-muted);
  line-height: 1.6;
}

.panel a {
  color: #e8f2ff;
  text-decoration: none;
}

.panel a:hover {
  text-decoration: underline;
}

.panel ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.shots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.shot-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.shot-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.shot-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .cxp-grid {
    grid-template-columns: 1fr;
  }

  .panel.wide {
    grid-column: span 1;
  }

  .shots-grid {
    grid-template-columns: 1fr;
  }
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 8, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-frame {
  max-width: min(96vw, 1500px);
  max-height: 92vh;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.4);
}

.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 92vh;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 16, 37, 0.8);
  color: #dbeafe;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(5, 16, 37, 0.95);
}
.shot-item {
  display: grid;
  gap: 8px;
}

.shot-direct {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  color: #dbeafe;
  text-decoration: none;
}

.shot-direct:hover {
  text-decoration: underline;
}
