.method-overview-section {
  margin: 1rem 0 2rem;
}

.method-map {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 1rem auto;
  background: #000000;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0px 4px 0.625rem rgba(0, 0, 0, 0.15),
    0px 8px 2rem rgba(0, 0, 0, 0.1);
}

.method-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.method-hotspot {
  position: absolute;
  display: block;
  border-radius: 0.4rem;
  outline: none;
  z-index: 2;
  cursor: pointer;
}

/* Top title/banner area */
.method-title {
  left: 12%;
  top: 2%;
  width: 78%;
  height: 13%;
}

/* Stage regions: include both diagram and label text */
.method-chaos {
  left: 0%;
  top: 16%;
  width: 20%;
  height: 80%;
}

.method-investigate {
  left: 20%;
  top: 16%;
  width: 20%;
  height: 80%;
}

.method-comprehend {
  left: 40%;
  top: 16%;
  width: 20%;
  height: 80%;
}

.method-architect {
  left: 60%;
  top: 16%;
  width: 20%;
  height: 80%;
}

.method-deliver {
  left: 80%;
  top: 16%;
  width: 20%;
  height: 80%;
}

.method-fullscreen-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(250, 140, 10, 0.8);
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fa8c0a;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.method-fullscreen-button:hover,
.method-fullscreen-button:focus {
  background: rgba(250, 140, 10, 0.15);
  outline: 2px solid #fa8c0a;
  outline-offset: 2px;
}

/* Lightbox */
.method-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
}

.method-lightbox.is-open {
  display: flex;
}

body.method-lightbox-open {
  overflow: hidden;
}

.method-lightbox img {
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.8);
}

.method-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(250, 140, 10, 0.8);
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fa8c0a;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.method-lightbox-close:hover,
.method-lightbox-close:focus {
  background: rgba(250, 140, 10, 0.15);
  outline: 2px solid #fa8c0a;
  outline-offset: 2px;
}

@media screen and (max-width: 768px) {
  .method-fullscreen-button {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
  }

  .method-lightbox {
    padding: 1rem;
  }
}