.massage-studio {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #23ACCF;
  color: #ffffff;
}

.massage-studio-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  width: min(100% - 2rem, 1400px);
  margin-inline: auto;
}

.massage-images {
  position: relative;
  min-height: clamp(520px, 54vw, 660px);
}

.massage-image {
  position: absolute;
  overflow: visible;
  margin: 0;
  background: #201612;
}

.massage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.massage-image-large {
  top: 0;
  left: 0;
  width: min(72%, 500px);
  height: min(86%, 660px);
}

.massage-image-small {
  right: -32px;
  top: 300px;
  bottom: 0;
  width: min(70%, 600px);
  height: min(68%, 520px);
}

@media (max-width: 620px) {
 .massage-image-small {
  right: -32px;
  top: 220px;
  bottom: 0;
  width: min(70%, 600px);
  height: min(68%, 520px);
}
}

.massage-image-small img {
  object-position: center top;
}

.vertical-marquee {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48px;
  width: 38px;
  overflow: hidden;
  background: transparent;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.massage-image-small .vertical-marquee {
  right: -38px;
  left: auto;
}

.vertical-marquee-track {
  position: absolute;
  top: 0;
  left: 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
  writing-mode: vertical-rl;
  transform: translateX(0);
  animation: verticalMarquee 9s linear infinite;
}

.vertical-marquee-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.vertical-marquee-reverse .vertical-marquee-track {
  animation-direction: reverse;
}

.vertical-marquee span {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.massage-copy {
  max-width: 540px;
}

.massage-kicker {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.massage-copy h2 {
  margin: 0 0 1.8rem;
  color: #ffffff;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 40px;  
  text-transform: uppercase;
}

.massage-copy > p:not(.massage-kicker) {
  max-width: 520px;
  margin: 0 0 2.35rem;
  color: #f0f0f4;
  font-size: 1.05rem;
  line-height: 1.75;
}

.massage-hours {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.massage-hours p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.massage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 212px;
  min-height: 62px;
  padding: 1rem 1.5rem;
  background: #101116;
  border: 1px solid #101116;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.massage-button:hover,
.massage-button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #101116;
}

@keyframes verticalMarquee {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (max-width: 980px) {
  .massage-studio-inner {
    grid-template-columns: 1fr;
  }

  .massage-images {
    width: min(100%, 740px);
    margin-inline: auto;
  }

  .massage-copy {
    max-width: 740px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .massage-studio {
    padding: 4rem 0;
  }

  .massage-images {
    min-height: 520px;
  }

  .massage-image-large {
    width: 78%;
    height: 380px;
  }

  .massage-image-small {
    width: 76%;
    height: 300px;
  }

  .vertical-marquee {
    width: 32px;
  }

  .vertical-marquee span {
    font-size: 0.78rem;
  }
}
