.stage-kicker {
  margin: 0;
  padding-top: 3.1rem;
  padding-bottom: 2rem;
  font-family: "Voltaire", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7f8f84;
}

.stage-image-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.stage-image-row-centered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.stage-image-row-two {
  display: flex;
  justify-content: center;
}

.stage-image-row-two .stage-image-card {
  flex: 0 1 220px;
}

.stage-image-card {
  width: 100%;
}

.stage-centered-image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin: 2rem auto;
}

.stage-natural-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}

.stage-image-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
  background: #6e8e7c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.stage-image-trigger:hover,
.stage-image-trigger:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.stage-image-trigger:focus-visible {
  outline: 3px solid #cbb68a;
  outline-offset: 4px;
}

.stage-image-preview {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
}

.stage-map-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}

.stage-map-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.stage-map-trigger:focus-visible {
  outline: 3px solid #cbb68a;
  outline-offset: 4px;
}

.stage-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-image-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(32, 29, 26, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 9999;
}

.stage-image-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stage-image-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: min(1280px, 100%);
  max-height: calc(100vh - 3rem);
  padding-top: 2.75rem;
  background: #111111;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.stage-image-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  border: 0;
  padding: 0.2rem;
  background: transparent;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
}

.stage-image-nav {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.55);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2;
}

.stage-image-nav:hover,
.stage-image-nav:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.stage-image-nav-prev {
  left: 1rem;
}

.stage-image-nav-next {
  right: 1rem;
}

.stage-image-full {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  margin: 0 auto;
  padding-top: 2rem;
  border-radius: 0;
  object-fit: contain;
  background: #111111;
  box-sizing: border-box;
}

.stage-image-caption {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 1.1rem 1.5rem;
  background: #111111;
  text-align: center;
  font-family: "Voltaire", sans-serif;
  font-size: 1.34rem;
  line-height: 1.42;
  color: #ffffff;
}

.stage-container-caption {
  margin: -1.6rem 0 2rem;
  text-align: center;
  font-family: "Voltaire", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #5f6f66;
}

.stage-seume-quote {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left-color: #111111;
  background: #f4f5f1;
}

.stage-seume-quote-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.stage-seume-quote-body {
  flex: 1;
  min-width: 0;
}

@media (max-width: 575.98px) {
  .stage-map-row {
    grid-template-columns: 1fr;
  }
  .stage-image-row {
    grid-template-columns: 1fr;
  }
  .stage-image-row-centered {
    max-width: none;
  }
  .stage-image-row-two {
    flex-direction: column;
  }
  .stage-image-dialog {
    width: calc(100% - 1rem);
  }
  .stage-image-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.65rem;
  }
  .stage-seume-quote {
    display: block;
  }
  .stage-seume-quote-thumb {
    display: block;
    margin: 0 auto 1rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .stage-image-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
